function SendSide(webPath) { var ItsTheWindow; w = 240; h = 300; LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; TopPosition = (screen.height) ? (screen.height-h)/2 : 0; settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no'; var id = ""; if(webPath == ""){ id = DocumentURL2; }else{ id = webPath; } ItsTheWindow = window.open('/sbbank/data.nsf/TipEnVen?OpenForm&ID='+id,'SendSiden', settings); } function OpenPrintWindow(UNID) { var ItsTheWindow; w = 630; h = 500; LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; TopPosition = (screen.height) ? (screen.height-h)/2 : 0; settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes'; if(UNID.length == 32){ ItsTheWindow = window.open('/sbbank/data.nsf/webPrint/'+UNID+'?Open','Udskrift', settings); }else{ ItsTheWindow = window.open('/sbbank/data.nsf/webPrint'+UNID,'Udskrift', settings); } } var orgClassName = ""; function trOver(tr){ //alert(tr.className) orgClassName = tr.className; tr.className = "leftmenuitem_select"; } function trOut(tr){ tr.className = orgClassName; }