/*
	Rutinas para el chequeo de datos en forms
	Idioma: Spanish
*/

function notEmptyCheck (campo)
{
if (((campo.type=="text"||campo.type=="textarea")&&
	campo.value=='')||(campo.type.toString().charAt(0)=="s"&&
	campo.selectedIndex==0))
	{return false;}
else
	{return true;}
}


function passwdCheck (p1,p2)
	{
	if (p1.value!=p2.value)
		{
		return false;
		}
	else
		{
		return true;
		}
	}

