// script.js

var OpenWindow=null;
var name="n";

// newFunction
function openindex(img,h,w)
{
//	var n="new"+img;
//if (OpenWindow==null){
name += "n";
OpenWindow=window.open("", name, "height="+h+",width="+w); 
//}
//Else
//	{
//OpenWindow=window.open("", "newwindow"); 
//OpenWindow.document.clear();
	//OpenWindow.close();
//	OpenWindow=window.open("", "newwindow", "height="+h+",width="+w);
//	}
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<TITLE>Dveri.by</TITLE>")
OpenWindow.document.write("<BODY leftmargin=0 topmargin=0 marginwidth=0 marginheight=0 BGCOLOR='FAEDC1'>")
OpenWindow.document.write("<CENTER>")
OpenWindow.document.write("<img src="+img+" >")
OpenWindow.document.write("</CENTER>")
OpenWindow.document.write("<table width=100% height=250><tr><td align=right valign=bottom><a style='font-family:Arial, Verdana, Helvetica, Helv; font-size:12px; font-weight:bold; text-decoration:none; color:black;' href='javascript:window.close()'>Back</a></td></tr></table>")
OpenWindow.document.write("</HTML>")
//self.name="main window"
}
