function test() { alert('test'); } function OpenOrdrPrsnttn(url) { return WindowOpen(url,'OrderingPresentation',750,520); } function WindowOpen(url) { var windowname = arguments[1] ? arguments[1] : '_blank'; var opt = ''; var p=''; if (arguments[2]) { opt += p+'width='+arguments[2]; p=','; } if (arguments[3]) { opt += p+'height='+arguments[3]; p=','; } opt += p+'toolbar='+(arguments[4] ? arguments[1] : 'no'); p=','; opt += ',location='+(arguments[5] ? arguments[5] : 'no'); opt += ',directories='+(arguments[6] ? arguments[6] : 'no'); opt += ',status='+(arguments[7] ? arguments[7] : 'no'); opt += ',menubar='+(arguments[8] ? arguments[8] : 'no'); opt += ',scrollbars='+arguments[9] ? arguments[9] : 'yes'; opt += ',resizable='+arguments[10] ? arguments[10] : 'yes'; opt += ',copyhistory'+arguments[11] ? arguments[11] : 'no'; // opt += arguments[] ? arguments[] : 'no'; // opt += arguments[] ? arguments[] : 'no'; return window.open(url,windowname,opt); } function mouse_ctrl(nullz,nully) { return; } function WOpen(name,url,w,h,s,r) { return(window.open(url,name,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars="+s+",resizable="+r+",fullscreen=no,channelmode=no,width="+w+",height="+h)); }