/*
Open Centered Popup Window Script-
© DHTML Shock (www.dhtmlshock.com)
To add more shock to your site, visit www.DHTML Shock.com
*/

function OpenBrWindow(theURL, winName, features, myWidth1, myHeight1, isCenter) { //v3.0
	myWidth=myWidth1;
	myHeight=myHeight1;
  if(window.screen)if(isCenter)if(isCenter=="true"){
    var myLeft = (screen.width-myWidth)/2;
    var myTop = (screen.height-myHeight)/2;
    features+=(features!='')?',':'';
    features+=',left='+myLeft+',top='+myTop;  }

  podglad=window.open('', "KZT", features+((features!='')?',':'')+'width='+myWidth+',height='+myHeight);

	podglad.document.open();
	podglad.document.clear();
	podglad.document.write("<html><head><title>"+winName+"&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp</title>\n");
	podglad.document.write("</head>\n"+"<body bottommargin=0 leftmargin=0 marginheight=0 marginwidth=0 rightmargin=0 topmargin=0 bgcolor=#FFFFFF>\n");
	podglad.document.write("<div align=center><IMG SRC="+theURL+" border=0></div>");
	podglad.document.write("</body>\n"+"</html>");
	podglad.document.close();
	podglad.focus();
	
}
