// JavaScript Document


function checkform(form){
	
	 if (document.emailForm.email.value == ""){
		document.getElementById('message').innerHTML ='Please enter a Your Email.';
		DisplayAlert('AlertBox');
		return false;
	}
		
		email = document.emailForm.email.value
		AtPos = email.indexOf("@")
		StopPos = email.lastIndexOf(".")
	
			if (AtPos == -1 || StopPos == -1) {
			document.getElementById('message').innerHTML ='Please enter a Valid email address.';
			DisplayAlert('AlertBox');
			return false ;
			}
	
	if (document.emailForm.name.value == ""){
		document.getElementById('message').innerHTML ='Please enter a Your Name.';
		DisplayAlert('AlertBox');
		return false;
	} else
	
	if (document.emailForm.question.value == ""){
		document.getElementById('message').innerHTML ='Please enter a Question.';
		DisplayAlert('AlertBox');
		return false;
	} 
		return true;
}

function DisplayAlert(id) {
	document.getElementById(id).style.display='block';
}