function checkForm(theForm) {

			theForm.required_linkBeingSent.value = document.URL;
			theForm.required_titleOfPage.value = document.title;
		
			//form.inputbox.value = "Have a nice day!" 

			var why = ""; 

			why += checkRealName(theForm.required_name.value);
			
			why += checkEmail(theForm.required_sender.value); 
			
			why += checkEmail(theForm.required_recip.value);  

			//alert(why);
			//why += isEmpty(theForm.required-name.value); 
			//why += checkEmail(theForm.required-sender.value); 

			//why += checkEmail(theForm.required-recip.value);
			
			
			if (why != "") {
       			alert(why);
       			//return false;
    		}
			else {
				//document.theForm.action = "/cgi-sys/cgiemail/sendlink.txt";
				//document.theForm.method = "post";
				theForm.submit();
				//return true;
			}
			
		//}
}