function abrir_ventana_mapa()
{
	ruta = "mapa.php";
	nombre = "";
	opciones = "resizable=no,scrollbars=no,width=350,height=361,left=60,top=75";
	window.open(ruta,nombre,opciones);
}

function cerrar_ventana_mapa()
{
	window.close();
}

function abrir_ventana_construccion()
{
	ruta = "construccion.php";
	nombre = "";
	opciones = "resizable=no,scrollbars=no,width=350,height=207,left=60,top=75";
	window.open(ruta,nombre,opciones);
}

function cerrar_ventana_construccion()
{
	window.close();
}