//---------------------------------------------------------------------//

//abre ventane de popup
function openPopup(ventana){
		var ww = window.screen.width;
		var wh = window.screen.height;
		var nww = 510;
		var nwh = 419;
        var posL = (ww/2) - (nww/2);
		var posR = (wh/2) - (nwh/2);
		window.open(ventana,'','width=510, height=419, resizable=no, scrollbars=no, status=no, left=' + posL +',top=' + posR +" ' " );
}
//abre ventane de popup mapa
function openPopupMapa(ventana){
		var ww = window.screen.width;
		var wh = window.screen.height;
		window.open(ventana,'','width=' + ww + ', height=' + wh + ', resizable=no, scrollbars=yes, status=no, left=0, top=0' );
}
//abre ventane de popup ficha
function openPopupFicha(ventana){
		var ww = window.screen.width;
		var wh = window.screen.height;
		var nww = 568;
		var nwh = 400;
        var posL = (ww/2) - (nww/2);
		var posR = (wh/2) - (nwh/2);
		window.open(ventana,'','width=568, height=400, resizable=no, scrollbars=no, status=no, left=' + posL +',top=' + posR +" ' " );
}
//---------------------------------------------------------------------//
//cierra ventana popup
function cerrarVentana(){
	window.close();
}

//---------------------------------------------------------------------//	
