function valid(f)
{
	if(f.Email.value=="" || f.Email.value.search("@")==-1 || f.Email.value.search("[*.]")==-1)
	{
		alert("Please enter your valid email address.");
		f.Email.focus();
		return false;
	}
return true;
}

var i=0
function popup()
{
	pop=window.open("","new"+i+"","width=350 height=300 top=50 left=50");
	pop.document.write("<html><head><title>Thanks Message</title>\n");
	pop.document.write("<style type=\"text/css\">body{font-family:arial;font-size:10pt;background-color:pink;}</style>");
	pop.document.write("</head><body><p><b>Thanks you for attending beauty 2004!</b></p>\n");
	pop.document.write("<p>We hope you enjoyed the show! A big thank you to all of the companies who exhibited, to the artists for their visions, and to the attendees for their support and interest.</p>\n");
	pop.document.write("<p>We could not have done it without you!</p>\n");
	pop.document.write("<p>Mark your calendars for next year's show - October 7-10, 2005 at the Putra World Trade Centre, Kuala Lumpur, Malaysia again.</p>\n");
	pop.document.write("</body></html>");
	i++;
}
