function checkemail(item)
	{
	  var flag = true;
	  var str = item.value;
	  var l = str.length;

	if(!str=="")
		{

		  for(i=0;i<l;i++)
		 { 
			if(i != 0)
			{
				if(!( (str.charCodeAt(i) >= 48 && str.charCodeAt(i) <= 57) || (str.charCodeAt(i) >= 64 && str.charCodeAt(i) <= 90) || (str.charCodeAt(i) >= 97 && str.charCodeAt(i) <= 122) || str.charCodeAt(i) == 46 || str.charCodeAt(i) == 95)) 
					   flag = false
			}
			else
			{
				if(!((str.charCodeAt(i) >= 65 && str.charCodeAt(i) <= 90) || (str.charCodeAt(i) >= 97 && str.charCodeAt(i) <= 122))) 
						flag = false;
				
			}
		 }	
		   if(flag == false ||  l > 30 || str.indexOf("@") == -1  ||  str.indexOf(".") == -1)
		   {
					
			alert("Please enter a valid email address.");
			item.focus();
				item.value = ""; 
		   }
		}
	}