function StyleChange(mobj,bgColor,fontColor){
    mobj.style.backgroundColor=bgColor;
    mobj.style.color=fontColor;
}

function GoTo(URL,type){
    var nwin=window.open(URL,type,"");
}

function FontColorChange(mobj, fontColor) {
    mobj.style.color=fontColor;
}

function openPage(url, name, wx, wy){
    formObj = document.ActionForm ;    
    x = (screen.width - wx) / 2 ;
    y = (screen.height - wy) / 2 ;
    var newWindow = window.open(url, name, "left=" + x + ",top=" + y + ",width=" + wx + ",height=" + wy + "titlebar=no,toolbar=no,scrollbars=yes,resizable=yes"); 

    if (newWindow == undefined) {
        alert('Please close the pop-up blocker.');
    } else {             
        newWindow.window.focus(); 
    }
}
