function Init() {
    return 1;
}



function printDocument(document) {
    document = document + '?print=now'; 
    if (PrintWin){PrintWin.close();}
    var PrintWin = eval("window.open(document,'PrintWin','toolbar=no,scrollbars=yes,resizable=no,width=679,height=550,screenX=0,screenY=0,left=20,top=80')");
    PrintWin.focus();
}     

var PopUpWindow;
function openPopUpWindow(File2open, xSize , ySize, scrollbarYesNo) {
    
    
    
    if (scrollbarYesNo) {
        if (scrollbarYesNo.length == 0 ) {
            scrollbarYesNo = 'no';
        }
    } else {
        scrollbarYesNo = 'no';
    }
    
    
    if (PopUpWindow) { 
        PopUpWindow.close(); 
    }
    PopUpWindow = eval("window.open(File2open,'PopUpWindow','toolbar=no,menubar=no,scrollbars=' + scrollbarYesNo + ',resizable=no,width=' + xSize +',height=' + ySize + ',screenX=0,screenY=0,left=20,top=80')");
    PopUpWindow.focus();
    //self.focus();
}



