function OpenFix(windowName,width,height) {
    newWindow = window.open(windowName, 'OpenFixWin','toolbar=no,menubar=no,width='+width+',height='+height+',scrollbars=no,resizable=no');
    newWindow.window.focus();
}
function OpenVar(windowName,width,height) {
    newWindow = window.open(windowName, 'OpenVarWin','toolbar=no,menubar=no,width='+width+',height='+height+',scrollbars=yes,resizable=yes');
    newWindow.window.focus();
}
function OpenVar1(windowName,width,height,left,top) {
    newWindow = window.open(windowName, 'OpenVarWin','toolbar=no,menubar=no,width='+width+',height='+height+',left='+left+',top='+top+',scrollbars=yes,resizable=yes');
    newWindow.window.focus();
}
function OpenMenu(windowName,width,height) {
    newWindow = window.open(windowName, 'OpenMenuWin','toolbar=yes,menubar=yes,width='+width+',height='+height+',scrollbars=yes,resizable=yes');
    newWindow.window.focus();
}
