
function ShowWindow(url,w,h,ShowToolBar){if(typeof w=='undefined'){w=Math.round(screen.availWidth*0.8);}
if(typeof h=='undefined'){h=Math.round(screen.availHeight*0.8);}
if(typeof ShowToolBar=='undefined'){ShowToolBar=false;}
var s;var scrW;var scrH;var b;var crb;b=false;scrb='no';scrW=screen.availWidth;scrH=screen.availHeight;if(scrW-30<w){w=scrW-30;b=true;}
if(scrH-20<h){b=true;h=scrH-50;}
if(b==true){w=w+20;h=h+20;scrb='yes';}
if(ShowToolBar){s="width="+scrW+",height="+scrH+",toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,fullscreen=no, scrollbars=yes,copyhistory=yes,resizable=yes, maximize=yes";}
else{s="width="+w+",height="+h+",toolbar=no,location=no,directories=no,status=no,menubar=no,fullscreen=no, scrollbars=yes,copyhistory=no,resizable=yes, maximize=no";}
url=url.toLowerCase();var rz=0;var rz=window.open(url,'_blank',s);if(rz){return false;}
return true;}
