// JavaScript Document


function pic(photo,height,width)
{
	var zWindow;
	zWindow=window.open("", "newwin", "width=" + width + ",height="+ height +",left=150,top=80,toolbar=0,location=0,scrollbars=0");
	zWindow.document.open();
	zWindow.document.write("<HTML><HEAD>");
	zWindow.document.write("<TITLE>Welcome to Pool Party inc.</TITLE>");
	zWindow.document.write("</HEAD>");
	zWindow.document.write('<body bgcolor="#000000"><center>');
	zWindow.document.write("<img src=" + photo + "></center>");
    zWindow.document.write("<center><form><input type='image'  src='close_btn.gif' onclick='window.close()'></form></center>");
	zWindow.document.write("</BODY></HTML>");
}



function pic1(photo,height,width)
{
	var zWindow;
	zWindow=window.open("", "newwin", "width=" + width + ",height="+ height +",left=150,top=80,toolbar=0,location=0,scrollbars=yes");
	zWindow.document.open();
	zWindow.document.write("<HTML><HEAD>");
	zWindow.document.write("<TITLE>Welcome to Pool Party inc.</TITLE>");
	zWindow.document.write("</HEAD>");
	zWindow.document.write('<body bgcolor="#000000"><center>');
	zWindow.document.write("<img src=" + photo + "></center>");
    zWindow.document.write("<center><form><input type='image'  src='close_btn.gif' onclick='window.close()'></form></center>");
	zWindow.document.write("</BODY></HTML>");
}








