// JavaScript Document
function checkValid()
{	
	var email = document.getElementById('txtemail');

	if (!emailValidation(email))
	{
		alert('Please enter valid email.');
		email.focus();
		return false;
	}

}



