//Validate Registration Page
function Validate(form){
	if (form.Name.value == ""){ 
		alert("Please fill in Name"); 
		form.Name.style.backgroundColor = '#FFFEEF';
		return false; 
	}else{
		form.Name.style.backgroundColor = '';
	}
	if (form.Address.value == ""){ 
		alert("Please fill in Address"); 
		form.Address.style.backgroundColor = '#FFFEEF';
		return false; 
	}else{
		form.Address.style.backgroundColor = '';
	}
	if (form.City.value == ""){ 
		alert("Please fill in City"); 
		form.City.style.backgroundColor = '#FFFEEF';
		return false; 
	}else{
		form.City.style.backgroundColor = '';
	}
	if (form.Phone.value == ""){ 
		alert("Please fill in Phone"); 
		form.Phone.style.backgroundColor = '#FFFEEF';
		return false; 
	}else{
		form.Phone.style.backgroundColor = '';
	}
	
}
//Validate Contact Page
function Validate2(form){
	if (form.Name.value == ""){ 
		alert("Please fill in Name"); 
		form.Name.style.backgroundColor = '#FFFEEF';
		return false; 
	}else{
		form.Name.style.backgroundColor = '';
	}
	if (form.Comments.value == ""){ 
		alert("Please fill in Comments"); 
		form.Comments.style.backgroundColor = '#FFFEEF';
		return false; 
	}else{
		form.Comments.style.backgroundColor = '';
	}
}
