function mostrar_ocultar(apartado)
	{
		document.getElementById('localizacion1').style.display='none';
		document.getElementById('localizacion2').style.display='none';
		document.getElementById('localizacion3').style.display='none';
		document.getElementById('localizacion4').style.display='none';
		document.getElementById('localizacion5').style.display='none';
		document.getElementById(apartado).style.display='';
	}
function abrirPopup(id)
{
	if (id == "terminos-legales")
	{
		document.getElementById(id).style.bottom = '320px'; 
		document.getElementById(id).style.left = '20px'; 	
	}
	else if (id == "legal-terms")
	{
		document.getElementById(id).style.bottom = '385px'; 
		document.getElementById(id).style.left = '20px'; 	
	}
	else if  (id == "condiciones")
		document.getElementById(id).style.bottom = '690px'; 
	else if (id == "conditions")
		document.getElementById(id).style.bottom = '640px'; 

	document.getElementById(id).style.display = 'block';
/*	shortcut.add("esc",function() {
	    cerrarPopup(id);
		});*/
}
function cerrarPopup(id)
{
/*	shortcut.remove("esc");*/
	document.getElementById(id).style.display='none';
}
