function AbrirVentanaProteccionDatos()

	{

		alerta_modo = "height=500,width=500,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,left=340,top=100,location=0"

		alerta = "./proteccion_datos.asp"
		ms_win = window.open(alerta,"LOPD",alerta_modo)
		ms_win.focus()
	}
	
function AbrirVentanaNotaLegal()

	{
		alerta_modo = "height=500,width=500,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,left=340,top=100"

		alerta = "notaLegal.asp"
		ms_win = window.open(alerta,"Notas",alerta_modo)
		ms_win.focus()
	}	
	
	
function AbrirVentanaContactar(id)

{
	alerta_modo = "height=480,width=620,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,left=340,top=100,location=0"

	alerta = "./Contactar.asp?id="+ id;
	ms_win = window.open(alerta,"Contáctenos",alerta_modo);
	ms_win.focus();
}
	
function AbrirVentanaLocalizacion(mapa)

	{

		alerta_modo = "height=420,width=700,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,left=340,top=200,location=0"

		alerta = "./localizacion.asp?mapa=" + mapa
		ms_win = window.open(alerta,"Localizacion",alerta_modo)
		ms_win.focus()
	}	
	
function AbrirVentanaLocalizacion2(mapa1, mapa2)

	{

		alerta_modo = "height=600,width=700,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,left=340,top=200,location=0"

		alerta = "./localizacion2.asp?mapa1=" + mapa1 + "&mapa2=" + mapa2
		ms_win = window.open(alerta,"Localizacion",alerta_modo)
		ms_win.focus()
	}	


function AbrirVentanaDetalle(id)

	{
		alerta_modo = "height=670,width=650,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,left = 340,top = 10,location=0"

		alerta = "./detalle.asp?id=" + id
		ms_win = window.open(alerta,"",alerta_modo)
		
		ms_win.focus();
		
	}	
		
