<!--

function emailMoreInfo(pCurrency, pPrice, pType, pId)
{
	var mWindow = window.open("", "Window", "width=490,height=100,scrollbars=yes");
	
	if (mWindow)
	{
		mWindow.document.writeln("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">");
		mWindow.document.writeln("<html xmlns=\"http://www.w3.org/1999/xhtml\" xml:lang=\"en\">");
		mWindow.document.writeln("<head>");
		mWindow.document.writeln("<title>Email me more information</title>");				
		mWindow.document.writeln("<style type=\"text/css\">");
		mWindow.document.writeln("body {background: #FFFFFF;}");
		mWindow.document.writeln("#emailForm p {");
		mWindow.document.writeln("color: #333333;");
		mWindow.document.writeln("font-family: Verdana, Arial, Helvetica, Sans-serif;");
		mWindow.document.writeln("font-size: 8pt;");
		mWindow.document.writeln("font-weight: normal;");
		mWindow.document.writeln("}");
		mWindow.document.writeln("#emailForm .submit {");
		mWindow.document.writeln("background: #FF9900;");
		mWindow.document.writeln("border: 1px solid #FFFFFF;");
		mWindow.document.writeln("	color: #FFFFFF;");
		mWindow.document.writeln("	font-size: 7pt;");
		mWindow.document.writeln("	font-weight: bold;");
		mWindow.document.writeln("	height: 18px;");
		mWindow.document.writeln("	margin-left: 10px;");
		mWindow.document.writeln("	padding: 0px;");
		mWindow.document.writeln("	width: 78px;");
		mWindow.document.writeln("}");
		mWindow.document.writeln("");
		mWindow.document.writeln("head ~ /* */ body #emailForm .submit {");
		mWindow.document.writeln("	padding-bottom: 2px;");
		mWindow.document.writeln("}");
		mWindow.document.writeln("");
		mWindow.document.writeln("#emailForm .text {");
		mWindow.document.writeln("	border: 1px solid #D1D1D1;");
		mWindow.document.writeln("	color: #484D84;");
		mWindow.document.writeln("	font-family: Verdana, Arial, Helvetica, sans-serif;");
		mWindow.document.writeln("	font-size: 7pt;");
		mWindow.document.writeln("	height: 14px;");
		mWindow.document.writeln("	padding-bottom: 0px;");
		mWindow.document.writeln("	padding-left: 3px;");
		mWindow.document.writeln("	padding-top: 2px;");
		mWindow.document.writeln("	width: 200px;");
		mWindow.document.writeln("}");
		mWindow.document.writeln("");
		mWindow.document.writeln("head ~ /* */ body #emailForm .text { width: 201px; }");
		mWindow.document.writeln("");
		mWindow.document.writeln("</style>");		
		mWindow.document.writeln("</head>");
		mWindow.document.writeln("<body>");								
		mWindow.document.writeln("<form id=\"emailForm\" name=\"emailForm\" action=\"index.phtml\" method=\"post\">");
		mWindow.document.writeln("<input type=\"hidden\" name=\"command\" value=\"email-more-info\" />");
		mWindow.document.writeln("<input type=\"hidden\" name=\"currency\" value=\"" + pCurrency + "\" />");
		mWindow.document.writeln("<input type=\"hidden\" name=\"price\" value=\"" + pPrice + "\" />");
		mWindow.document.writeln("<input type=\"hidden\" name=\"type\" value=\"" + pType + "\" />");
		mWindow.document.writeln("<input type=\"hidden\" name=\"type-id\" value=\"" + pId + "\" />");
		mWindow.document.writeln("<p>Enter your email address to receive the extra information for this product</p>");
		mWindow.document.writeln("<input type=\"text\" name=\"email\" value=\"\" />");
		mWindow.document.writeln("<input type=\"submit\" class=\"submit\" name=\"frm_submit\" value=\"Send\" />");
		mWindow.document.writeln("</form>");
		mWindow.document.writeln("</body>");
		mWindow.document.writeln("</html>");
		mWindow.document.close();
	}
	
	mWindow.focus();

}


//-->
