// JavaScript Document
<!--
//formval
function validateForm(form) { 
	if (form.name.value == "") { 
		alert("Please enter your name."); 
		form.name.focus( ); 
		return false; 
	}			
	if (form.email.value == "") { 
		alert("Please enter your e-mail address."); 
		form.email.focus( ); 
		return false;
	}				
	if (form.message.value == "") { 
		alert("Please enter a message."); 
		form.message.focus( ); 
		return false; 
	}		
	if (form.norobot.value == "") { 
		alert("Please enter the spam protection code (in the black box)."); 
		form.norobot.focus( ); 
		return false; 
	}	
}
//-->

<!--
//buynow formval
function validateBuy(form) {
	if (form.name.value == "") { 
		alert("Please enter your name."); 
		form.name.focus( ); 
		return false; 
	}			
	if (form.email.value == "") { 
		alert("Please enter your e-mail address."); 
		form.email.focus( ); 
		return false;
	}		
	if (form.captcha.value == "") { 
		alert("Please enter the spam protection code (in the black box)."); 
		form.captcha.focus( ); 
		return false; 
	}	
}
//-->




