function checkit(){
	var stipp = document.plaster;
	var crab = stipp.r_email.value.indexOf("@", 0);
	var crab2 = stipp.s_email.value.indexOf("@", 0);
	if (stipp.recipient.value ==""){
		alert("Please enter your Friend\'s NAME")
		stipp.recipient.focus()
		return false;
	}else if (stipp.r_email.value ==""){
		alert("Please enter your Friend\'s E-MAIL ADDRESS")
		stipp.r_email.focus()
		return false;
	}else if (crab == -1){
		alert("You must enter a Domain. (i.e. worker@COMPANY.COM)")
		stipp.r_email.focus()
		stipp.r_email.select()
		return false;
	}else if (stipp.r_email.value.indexOf(".", crab) == -1){
		alert("You must enter a Domain Suffix. (i.e. worker@company.COM)")
		stipp.r_email.focus()
		stipp.r_email.select()
		return false;
	}else if (stipp.sender.value ==""){
		alert("Please enter your NAME")
		stipp.sender.focus()
		return false;
	}else if (stipp.s_email.value ==""){
		alert("Please enter your E-MAIL ADDRESS")
		stipp.s_email.focus()
		return false;
	}else if (crab2 == -1){
		alert("You must enter a Domain. (i.e. worker@COMPANY.COM)")
		stipp.s_email.focus()
		stipp.s_email.select()
		return false;
	}else if (stipp.s_email.value.indexOf(".", crab2) == -1){
		alert("You must enter a Domain Suffix. (i.e. worker@company.COM)")
		stipp.s_email.focus()
		stipp.s_email.select()
		return false;
	}else if (stipp.body.value == ""){
		alert("Please type a short message.")
		stipp.body.focus()
		return false;
	} 
	return true;
}