function verAvisoLegal(idioma){
	var ancho = 500;
	var alto = 250;
	var sustituir = 1;				
	var x = (screen.width/2) - (ancho / 2);
	var y = (screen.height/2) - (alto / 2);
	var opciones = "fullscreen=0" +
			 ",toolbar=0"+
			 ",location=0"+
			 ",status=0"+
			 ",menubar=0"+
			 ",scrollbars=1"+
			 ",resizable=0"+
			 ",width=" + ancho +
			 ",height=" + alto +
			 ",left=" + x +
			 ",top=" + y;
	var ventana = window.open("/aviso-legal_"+idioma+".html","",opciones,sustituir);
	//window.open('/condiciones.html','Regálate una casa - Condiciones de la oferta','width=500,height=250,left='+x+',top='+y+',resizable',1)

}
