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

//abre ventane de popup
function openPopup(ventana){
		var ww = window.screen.width;
		var wh = window.screen.height;
		var nww = 845;
		var nwh = 620;
        var posL = (ww/2) - (nww/2);
		var posR = (wh/2) - (nwh/2);
		
		window.open(ventana,'','width=845, height=620, resizable=no, scrollbars=no, status=no, left=' + posL +',top=' + posR +" ' " );
}


//abre ventane de popup
function openPopupGalery(ventana){
		var ww = window.screen.width;
		var wh = window.screen.height;
		var nww = 845;
		var nwh = 620;
        var posL = (ww/2) - (nww/2);
		var posR = (wh/2) - (nwh/2);
		
		window.open(ventana,'','width=845, height=620, resizable=no, scrollbars=yes, status=no, left=' + posL +',top=' + posR +" ' " );
}
//---------------------------------------------------------------------//
//cierra ventana popup
function cerrarVentana(){
	window.close();
}

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

