function esVacio(obj)
{
	if (obj.value=="" || obj.length==0)
		return true;
	else 
		return false;
}
function esTelefono(obj)
{
 
 telefono = obj.value.length;
 if (isNaN(telefono) || telefono !=9) 
	 return false;
 else 
	 return true;
}



//ALERTAS
function alertaVacia(campo,nombreCampo)
{
alert('Debe rellenar el campo \''+nombreCampo+'\'.');
campo.focus();
}
function alertaFormato(campo,nombreCampo)
{
alert('El campo \''+nombreCampo+'\' no tiene el formato adecuado.');
campo.focus();
}
