
/* ********************************************************************************************************** */
/* ESTA FUNCIÓN COMPRUEBA SI ES UN CAMPO DE EMAIL Y ESTÁ CORRECTO                                             */
/* ********************************************************************************************************** */
function C_email(valor){
	pos_A= valor.indexOf("@")
	pos_P= valor.indexOf(".")

	if(pos_A==-1 || pos_A==0 || pos_A==valor.length-1)
		return false;

	return true;
}


/* ********************************************************************************************************** */
/* ELIMINA LOS ESPACIOS EN BLANCO DE UNA CADENA DE TEXTO		 				      */
/* Creada 24-08-2006 por Natalia									      */
/* ********************************************************************************************************** */

function QuitaBlancos(string) {
	var temp = "";
	string = '' + string;
	splitstring = string.split(" ");
	for(i = 0; i < splitstring.length; i++)
	temp += splitstring[i];
	return(temp);
}
