//DC21WBM Javafuncktion
//20100428/muy
function IsNumeric(strString)
    //  check for valid numeric strings	
    //muy
    {
    var strValidChars = "0123456789";
    var strChar;
    var blnResult = true;

    if (strString.length == 0) return false;

    //  test strString consists of valid characters listed above
    for (i = 0; i < strString.length && blnResult == true; i++)
        {
        strChar = strString.charAt(i);
        if (strValidChars.indexOf(strChar) == -1)
            {
            blnResult = false;
            }
        }
    return blnResult;
}
    
function windowreload() {
        window.location.href = window.location.href
    }
    
function windowreload2() {
        window.location.reload();
    }

function openwindows(path) {
    tb_show('DC21WBM', path + '&modal=true', '');
}

function showProgress(varProgress) {
    //    $get('UpdateProgress').style.display = 'block';
    document.getElementById(varProgress).style.display = 'block';

}


