1234567891011 |
- //open sized window
- function openWindow(sHref,strWidth,strHeight) {
- var strLeft=(screen.availWidth-strWidth)/2;
- var strTop=(screen.availHeight-strHeight)/2;
- var strRef="";
- strRef=strRef+"width="+strWidth+"px,height="+strHeight+"px,";
- strRef=strRef+"left="+strLeft+"px,top="+strTop+"px,";
- strRef=strRef+"resizable=yes,scrollbars=yes,status=yes,toolbar=no,systemmenu=no,location=no,borderSize=thin";//channelmode,fullscreen
- var openerobj= window.open(sHref,'newwin',strRef,false);
- openerobj.focus();
- }
|