function makepopup(url,winname,menuflag,toolbarflag,directoryflag,locationflag,scrollflag,statusflag,resizeflag,widthflag,heightflag,xyflag,xflag,yflag){var getbrow=navigator.appName;var getver=navigator.appVersion;var getkey=getver.substring(0,1)*1;var ieok=true;var popup=null;var modalflag="no";if((getbrow!="Microsoft Internet Explorer")||(getkey<4)){ieok=false;}if(modalflag=="yes"){if(parseInt(widthflag)>0)
widthflag=(parseInt(widthflag)+7).toString();if(parseInt(heightflag)>0)
heightflag=(parseInt(heightflag)+26).toString();}if(xyflag==1){if(widthflag>0)
xflag=(screen.availWidth-widthflag)/2;if(heightflag>0)
yflag=(screen.availHeight-heightflag)/2;}if(modalflag=="yes"){window.showModalDialog(url,"",
"dialogWidth:"+widthflag+"px; "+"dialogHeight:"+heightflag+"px; "+"dialogLeft:"+xflag+"px; "+"dialogTop:"+yflag+"px; "+"center:"+xyflag+"; "+"help:no; "+"scroll:"+scrollflag+"; "+"resizable:"+resizeflag+"; "+"status:"+statusflag+";");}else{popup=window.open(url,winname,
"menubar="+menuflag+","+"toolbar="+toolbarflag+","+"directories="+directoryflag+","+"location="+locationflag+","+"scrollbars="+scrollflag+","+"status="+statusflag+","+"resizable="+resizeflag+","+"width="+widthflag+","+"height="+heightflag+","+"left="+xflag+","+"top="+yflag);if((popup!=null)&&(ieok==false)){popup.document.location.href=url;}if(winname=="blur_win")
popup.blur();else
popup.focus();}}