function verifyemail_check(str) 
{ 
        if(!str.match(/^[\w]{1}[\w\.\-_]*@[\w]{1}[\w\-_\.]*\.[\w]{2,6}$/i)) 
	{ 
            return false; 
        } 
	else 
	{ 
            return true; 
        }
}
