// JavaScript Document
 
function openwindow1(width,height,url) { 
var left=(screen.width-width-10)/2; 
var top=(screen.height-height-20)/2; 
var show = false; 
var pw=""; 
if (left<0) left=0; 
if (top<0) top=0;        
if (pw=="") { 
show=true; 
} else { 
rep=prompt("\x42\x69\x74\x74\x65\x20\x67\x65\x62\x65\x6E\x20\x53\x69\x65\x20\x49\x68\x72\x20\x47\x61\x6C\x65\x72\x69\x65\x2D\x4B\x65\x6E\x6E\x77\x6F\x72\x74\x20\x65\x69\x6E\x2E",""); 
if (rep!=null) { 
if (rep!=pw) { 
alert("\x44\x61\x73\x20\x65\x69\x6E\x67\x65\x67\x65\x62\x65\x6E\x65\x20\x4B\x65\x6E\x6E\x77\x6F\x72\x74\x20\x69\x73\x74\x20\x6E\x69\x63\x68\x74\x20\x6B\x6F\x72\x72\x65\x6B\x74\x2E"); 
} else { 
show=true; 
} 
} 
} 
if (show) { 
var options = "toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no,copyhistory=no,width="+width+",height="+height+",left="+left+",top="+top; 
var mypopup = window.open( url ,"popupwindow", options); 
mypopup.moveTo(left, top); 
} 
} 

