function doQuickSubmit() {
		document.quickfind.submit();;
	 }

	 function doSubmit()
	 {
	 	if( document.quickmail.email.value.length == 0 )
			alert( "Please enter your email address");
		else
		{
			url = "http://www.internationalposter.com/postemail.cfm?email=" + document.quickmail.email.value;
			document.quickmail.email.value = "";
			window.open( url, "emailpost", "toolbar=no,resizable=yes,scrollbars=yes,menubar=no,location=no,width=450,height=180,top=200,left=200" );
			
		}
	 }