// JavaScript Document

	//BOLETIN - EMPIEZA AKI
	function ventanaNueva (URL, nombre, an, al)
		{ 
		window.open(URL,nombre,'width=' + an + ',height=' + al + ',scrollbars=no,top='+((screen.height/2) - (al/2))+',left='+((screen.width/2) - (an/2)));
		
		} 
		
		function ponerEnCastellano(){
	var nodo = document.getElementById('textoFormulario');
	var viejo = nodo.firstChild;
	var nuevo = document.createTextNode("RECIBA GRATIS el Informativo de la primera televisión Inmobiliaria en su correo")
	nodo.replaceChild(nuevo, viejo);
	document.getElementById('botonBoletin').value='ENVIAR';
	
	var viejasCondiciones = document.getElementById('enlaceCondiciones').firstChild;
	var nuevasCondiciones = document.createTextNode("ACEPTO LAS CONDICIONES LEGALES");
	document.getElementById('enlaceCondiciones').replaceChild(nuevasCondiciones,viejasCondiciones);
	if(document.getElementById('campoBoletin').value=='Introduce your e-mail')
		document.getElementById('campoBoletin').value='Introduzca su e-mail';
//	nodo.insertData(0,'CASTELLANO');
	//window.open(otro);
	//var textoViejo = nodoTexto.nodeValue;
	//nodoTexto.nodeValue = "Novedades";
}

function ponerEnIngles(){
	var nodo = document.getElementById('textoFormulario');
	var viejo = nodo.firstChild;
	var nuevo = document.createTextNode("FREE RECEIVE informative of the first real estate television in your mail")
	nodo.replaceChild(nuevo, viejo);
	document.getElementById('botonBoletin').value='SEND';
	
	var viejasCondiciones = document.getElementById('enlaceCondiciones').firstChild;
	var nuevasCondiciones = document.createTextNode("I ACCEPT LEGAL CONDITIONS");
	document.getElementById('enlaceCondiciones').replaceChild(nuevasCondiciones,viejasCondiciones);
	if(document.getElementById('campoBoletin').value=='Introduzca su e-mail')
		document.getElementById('campoBoletin').value='Introduce your e-mail';
}

function validaBoletin() {
		an = 300;
		al = 600;
		
		if (document.formboletin.email.value.length==0){ 
		   alert("Tiene que escribir su e-mail") 
		   document.formboletin.email.focus(); 
		   return 0; 
		} 			

		if (document.formboletin.email.value.length > 0){
		   //alert("Ha escrito algo, lo pasamos por la turmix") 
		   var a = document.formboletin.email.value;
		   var filter=/^([a-zA-Z0-9_.-])+@(([a-zA-Z0-9-])+.)+([a-zA-Z0-9]{2,4})+$/;
		   if (!filter.test(a)) {
			   alert("Ha escrito un e-mail no válido");
			   document.formboletin.email.focus(); 
			   return 0;
			} 
			else
			{
				//window.open('boletinOK.htm','BOLETÍN REINAS.TV','width=' + an + ',height=' + al + ',scrollbars=no,top='+((screen.height/2) - (al/2))+',left='+((screen.width/2) - (an/2)));
				document.formboletin.submit(); 
			}
		}
}
	//BOLETIN - ACABA AKI
	
	//FUNCION VIDEO ALEATORIO
	
	function cambialo(enlace) {
		document.getElementById('video').innerHTML = "<object id='mediaPlayer' width='350' height='225' classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701' standby='Loading Microsoft Windows Media Player components...' type='application/x-oleobject'><param name='fileName' value='" + enlace + "'><param name='animationatStart' value='true'><param name='transparentatStart' value='false'><param name='autoStart' value='true'><param name='showControls' value='true'><param name='loop' value='false'><embed type='application/x-mplayer2' pluginspage='http://microsoft.com/windows/mediaplayer/en/download/' id='Player' name='mediaPlayer' displaysize='2' autosize='-1' bgcolor='darkblue' showcontrols='true' showtracker='-1' showdisplay='0' showstatusbar='-1' videoborder3d='-1' width='350' height='225' autostart='true' designtimesp='5311' loop='false' src='" + enlace + "'></embed></object>"
	}
