	function comprobar_mail(email){
		var filter=/^[A-Za-z0-9][A-Za-z0-9_\.]*@[A-Za-z0-9_]+.[A-Za-z0-9_.]+[A-za-z]$/;
		//filter=/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/;
		var aux = filter.test(email);
		if(aux == true)
			return false;
		return true;
	}
	function IsNumber(e) {
		tecla = (document.all) ? e.keyCode : e.which;
		if(tecla==0){
			return true;
		}else{
			if (tecla==8) return true;
			patron = /\d/; // Solo acepta números
			te = String.fromCharCode(tecla);
			return patron.test(te);
		}
	} 
	function IsEnter(e){
		tecla = (document.all) ? e.keyCode : e.which;
		if (tecla==13)  //Tecla q corresponde con el enter
			return true;
		return false;
	}
	function IsPrice(e) {
		tecla = (document.all) ? e.keyCode : e.which;
		if(tecla==0){
			return true;
		}else{
			if (tecla==8) return true;
			patron = /[\d\,]/; // Solo acepta números
			te = String.fromCharCode(tecla);
			return patron.test(te);
		}
	}
	
	function colspub(publicidades){
		var pub = "";
		/* alto es igual a la posiction de contenedor menos la posicion del pie menos los margenes*/
		if (navigator.appName == "Microsoft Internet Explorer"){
			var alto = document.getElementById('banners_inferiores').offsetTop-(document.getElementById('pie_topanuncio').offsetTop + document.getElementById('pie_topanuncio').parentNode.parentNode.offsetTop)-40;
		}else{
			var alto = document.getElementById('banners_inferiores').offsetTop-document.getElementById('pie_topanuncio').offsetTop-40;
		}
		var cantpub = alto/100
		var i = 1;
		if(cantpub>0){
			for (var item in publicidades){
				if(i<=cantpub){
					pub = pub + '<div class="pubcols"><a href="' + publicidades[item][0] + '" target="' + publicidades[item][1] + '" style="text-decoration:none;"><img src="' + publicidades[item][2] + '" class="gral" width="180" height="78" border="0"/></a></div>';
					i = i + 1;
				}else{
					break;
				}	
			}
		}
		document.getElementById('publicidades-sec').innerHTML = pub;
	}