
function Popup(name,url,width,height,scrollbars,resizable,left,top,menubar,toolbar,loc_bar,statusbar,directories){var wnd;var xcen,ycen;var nn=document.layers?1:0;width=width?width:300;height=height?height:300;xcen=(screen.availWidth-width)/2;ycen=(screen.availHeight-height)/2;directories=directories?',directories=yes':',directories=no';loc_bar=loc_bar?',location=yes':',location=no';statusbar=statusbar?',status=yes':',status=no';toolbar=toolbar?',toolbar=yes':',toolbar=no';menubar=menubar?',menubar=yes':',menubar=no';resizable=resizable?',resizable=yes':',resizable=no';scrollbars=scrollbars?',scrollbars=yes':',scrollbars=no';width=width?('width='+width):'width=300';height=height?(',height='+height):',height=300';left=left?((nn?',screenX=':',left=')+left):((nn?',screenX=':',left=')+xcen);top=top?((nn?',screenY=':',top=')+top):((nn?',screenY=':',top=')+ycen);document.body.style.cursor='wait';wnd=window.open(url,name,width+height+scrollbars+resizable+
left+top+menubar+toolbar+loc_bar+statusbar+
directories);document.body.style.cursor='default';if(wnd!=null){wnd.focus();}
return wnd;}