	function validate() {
   	if ($F('sender') == "") {
      	new Insertion.After('senderlabel', ' <strong style="color:#0000cc">(Required!)<\/strong>');
			document.contact.sender.focus();
   	   return false;
   		}
   	if ($F('email') == "") {
      	new Insertion.After('emaillabel', ' <strong style="color:#0000cc">(Required!)<\/strong>');
			document.contact.email.focus();
	      return false;
   		}
   	if ($F('subject') == "") {
      	new Insertion.After('subjectlabel', ' <strong style="color:#0000cc">(Required!)<\/strong>');
			document.contact.subject.focus();
	      return false;
   		}
   	if ($F('comments') == "") {
      	new Insertion.After('commentslabel', ' <strong style="color:#0000cc">(Required!)<\/strong>');
			document.contact.comments.focus();
	      return false;
   		}			
   	if ($F('code') == "") {
      	new Insertion.After('codelabel', ' <strong style="color:#0000cc">(Required!)<\/strong>');
			document.contact.code.focus();
	      return false;
   		}	
		}