function noSpam(user,domain,subject) { locationstring = "mailto:" + user + "@" + domain + "?subject=" + subject; window.location = locationstring; }function signUpMail(){// THIS IS JUST COPIED OVER FROM AN OLD SCRIPT - REDO!theform = document.mailinglistformf1 = theform.name_first.value;f2 = theform.name_last.value;f3 = theform.address.value;f4 = theform.city.value;f5 = theform.state.value;f6 = theform.zip.value;subscriber = theform.email.value;// email checker - check for absence of @ and ., but allow blank responsesif (subscriber != "" && (subscriber.indexOf("@") == -1 || subscriber.indexOf(".") == -1)) {        alert("Please try typing that again. \n\"" + subscriber + "\" doesn't look like a valid email address.");	theform.email.focus();	return;	}// check other necessary fields for blank responsesif ( f1 == "" || f2 == "" || f3 == "" || f4 == "" || f5 == "" || f6 == "") {       alert("One or more necessary field were left blank.");	theform.f1.focus();	}// if OK, send dataelse {	theform.action = "http://www.laughing-stock.org/storemailinglist.php";	theform.submit();	}}