function checkEmail(strEmail){
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/.test(strEmail)==false)
		{
		alert('Incorrect Email address!');
		return false;
		}
	else	
		return true;	
}

