function validateWebmaster() {
	var msg = 'Please complete the following fields:\n\n';
	
	if(document.webmasterForm.firstName.value == '')
		msg += 'First name\n';
		
	if(document.webmasterForm.lastName.value == '')
		msg += 'Last name\n';
		
	if(document.webmasterForm.Email.value == '')
		msg += 'E-Mail address\n';
	else 
		if(checkEmail(document.webmasterForm.Email.value)==false)
			msg += 'Invalid E-Mail address\n';
			
	if(document.webmasterForm.Comments.value == '')
		msg += 'Comments\n';
		
	if(msg == 'Please complete the following fields:\n\n'){
		document.webmasterForm.submit();
		opener.location="thankyou.asp";
		window.close();
		opener.focus();
	}
	else
		alert(msg);
}