function email_signup(){
	if (user_email == "") {
		document.write("<form name=\"surveynew\" method=\"POST\" action=\"shopper_new.asp\">");
		document.write("<input type=\"hidden\" name=shopper_country value=\"USA\">");
		document.write("<input type=\"hidden\" name=\"Validate\" value=\"1\">");
	} else {
		var AUTO_email = user_email.substring(0,user_email.lastIndexOf("_"));
		if (AUTO_email=="AUTO"){
			document.write("<form name=\"surveynew\" method=\"POST\" action=\"shopper_new.asp\">");
			document.write("<input type=\"hidden\" name=shopper_country value=\"USA\">");
			document.write("<input type=\"hidden\" name=\"Validate\" value=\"1\">");
		}else{
			document.write("<form name=\"surveynew\" method=\"POST\" action=\"shopper_unsubscribe.asp\">");
		}
	}
	document.write("<input type=\"hidden\" name=target value=\"text_4.asp\">");
	document.write("<input type=\"hidden\" name=s_id value=\"0\">");
	document.write("<input type=\"hidden\" name=\"shopper_pref_1\" value=\"YES\">");
       document.write("<input type=\"text\" size=\"14\" class=\"null\" id=\"shopper_email\" name=\"shopper_email\" value=\"Enter email address...\" onblur=\"if (!this.value) { this.value='Enter email address...'; }\" onfocus=\"this.value='';\"");
	//drawinput("TEXT","shopper_email","Enter email address...",14,1,null,null);
	document.write("<br/><br/><input type=image src=\"assets/images/btnsubscribe.gif\" NAME=email class=btnsubscribe> ");
	document.write("</form>");
}
