
var myWin;

function imgWin(imgSrc,pwidth,pheight,title) {

	if (myWin) myWin.close();
	myWin = open("js/index.html", "pilt", "toolbar=no,directories=no,status=no,location=no,resizable=no,scrollbars=no,menubar=no,height="+pheight+",width="+pwidth+"");

	myWin.document.open();

	myWin.document.write("<html><head><title>" + title);
	myWin.document.write("</title></head><body scrolling=no marginheight=0 marginwidth=0 leftmargin=0 topmargin=0 bgcolor=white>");
	myWin.document.write("<a href=# onClick=window.close()><img src="+imgSrc+" width="+pwidth+" height="+pheight+" border=0></a>");
	myWin.document.write("</body></html>");

	myWin.document.close();
	return false;
}

