// JavaScript Document
function validate(){
	var amps = false;
	var strin = "";
	if(document.commentform.vname.value=="")
		strin = strin + "Your Name \n";

	if(document.commentform.vemail.value=="")
		strin = strin + "Your Email \n";

	if(document.commentform.vmessage.value=="")
		strin = strin + "Your Message \n";
	if(strin==""){
		alert('Thank you for submitting your comment.');
		return true;
	}else{
		alert('Please enter value for: \n'+strin);
		return false;
	}
}
function validatefields(){
	var amps = false;
	var strin = "";
	if(document.reservationform.rname.value=="")
		strin = strin + "Your Name \n";
	if(document.reservationform.raddress.value=="")
		strin = strin + "Your Address \n";
	if(document.reservationform.roccassion.value=="")
		strin = strin + "The event \n";
	if(document.reservationform.rcontact.value=="")
		strin = strin + "Your Contact Number \n";
	if(document.reservationform.rmessage.value=="")
		strin = strin + "Your Message \n";
	if(strin==""){
		alert('Thank you for submitting your reservation.');
		return true;
	}else{
		alert('Please enter value for: \n'+strin);
		return false;
	}
	
}
