var email_friend = "<a href='mailto:?subject=Cast Your Vote - Pick the Perfect Nipple&body=Hi, check this out: http://www.nipplerepair.com/nipple/.' ><img src='/images/button-email.gif' alt='Email this to a Friend' style='margin-bottom:10px;' /></a>";

function checkMe(obj) {
	// declare errorstring
	var errorString ="";
	// email must have  and '@' and a '.' and cannot have any spaces
	if ((obj.Email.value.indexOf("@")==-1) || (obj.Email.value.indexOf(".")==-1) || (obj.Email.value.indexOf(" ")!=-1)) {
		errorString = errorString + "'" + obj.Email.value + "' is not a valid email address.\nPlease re-enter your email address.\n\n";
		}
	// if we've set the errorstring, lets yell at them and return false
	if (errorString != "") {
		alert(errorString);
		return false;
	}
	
	return true;
}