function makeWin(h,w,image,imgH,imgW)
{
	var getheight=h;
	var getwidth=w;
	var getimage=image;
	var remote = window.open("","remote",'resizable=no,toolbar=0,location=0,directories=0,status=0,top=150,left=250,menubar=0,scrollbars=no,copyhistory=0,width='+getwidth+',height='+getheight);
	 remote.document.write("<link rel='stylesheet' href='global.css'><title>California Water Technologies</title>");
   remote.document.write("<body class=\"mainbg\" onblur=\"setTimeout('self.focus()',2000);\">");
	 remote.document.write("<center><img src="+getimage+" width='"+imgH+"' height='"+imgW+"' border='1'><br>");
	 remote.document.write("<a href='#' class='normal' onclick='javascript:window.close()'>Close Window</a></center>");
   remote.document.write("</body>");
   remote.focus();
}
