function  checkscript()
{
	var nme		= document.contactform.name.value;
	var address = document.contactform.address.value;
	var phone	= document.contactform.telephone.value;
	var eml 	= document.contactform.email.value;
	var subject	= document.contactform.subject.value;
	var comment	= document.contactform.comments.value;
	var captcha = document.contactform.captchatxt.value;

	if (nme === '' || eml === '' || comment === '' || captcha === '')
	{
		 alert("Please make sure your name, email address, your message, \nand the three black sybmols are filled  in before submission!");
		 if(nme ==='') { document.contactform.name.focus();	return false; }
		 else if(eml ===''){ document.contactform.email.focus(); return false; }
		 else if(comment === ''){document.contactform.comments.focus();	return false; }
		 else if(captcha === ''){ document.contactform.captchatxt.focus();	return false; }
	}
}
