/* 061104*/

function PopUps061104(imgName,imgHeight)
{
	//Retrieve image name here
	imgName="graphics/"+imgName;
	//alert(imgName);
	//alert(imgHeight);
	var windowHeight=window.parseInt(imgHeight)+100;
	//alert(windowHeight);
	var newwin;
	
	 var str = "height="+600;
	 str+=",width="+800;
	 str+=",scrollbars="+1;
	 //alert(str);
	
	//Common Upper part
	newwin=window.open("","mywindow",str);
	newwin.document.write("<title>16 WEST 19TH :: BY JADE JAGGER</title><body leftmargin='0' rightmargin='0' topmargin='0' marginheight='0' marginwidth='0' bgcolor='#20130F'>");
	newwin.document.write("<table width='900' border='0' align='center' cellpadding='0' cellspacing='0' bgcolor='#20130F'>");
	newwin.document.write("<tr><td valign='top'><img src='graphics/spacer.gif' width='50' height='1' alt='' border='0'></td>");
	newwin.document.write("<td valign='top' width='55'><img src='graphics/logo_pop.gif' alt='Jade' width='55' height='89' border='0'></td>");
	newwin.document.write("<td valign='top' width='679'><img src='graphics/spacer.gif' width='1' height='1' alt='' border='0'></td>");
	newwin.document.write("<td align='left' valign='top' width='46'><a href='#' onclick='self.close();return false;'><img src='graphics/close.gif' alt='Close' width='46' height='18' vspace='10' border='0'></a></td>");
	newwin.document.write("<td valign='top'><img src='graphics/spacer.gif' width='70' height='1' alt='' border='0'></td></tr>");
	newwin.document.write("<tr><td valign='top' colspan='5'><hr size='1' noshade color='#351B12' width='98%' align='center'></td></tr>");
	//Image displays here
	newwin.document.write("<tr><td valign='top' align='center' colspan='5'><img src='"+imgName+"' alt='' width='900' height='"+imgHeight+"' border='0'></td></tr>");
	newwin.document.write("</table>");
	newwin.moveTo((window.screen.availWidth -  640) / 2, (window.screen.availHeight - 480) / 2);
	//alert("here");
}
