function esAlfaNumeric(val)
{
	if (val.match(/^[a-zA-Z0-9_.!?@*\/:\-]+$/))
	{
	return true;
	}else{
	return false;
	}
}