// JavaScript Document
var popup=null;
function abre_popup(url,anchoPopup,altoPopup){
		// Si el popup ya existe lo cerramos
		if(popup!=null){
				popup.close();
		}
		// Capturamos las dimensiones de la pantalla para centrar el popup
			altoPantalla = parseInt(screen.availHeight);
			anchoPantalla = parseInt(screen.availWidth);
			
			// Calculamos el centro de la pantalla
			centroAncho = parseInt((anchoPantalla/2))
			centroAlto = parseInt((altoPantalla/2))
	
			// dimensiones del popup
			//anchoPopup = 390;
			//altoPopup = 210;

			// Calculamos las coordenadas de colocación del Popup
			laXPopup = centroAncho - parseInt((anchoPopup/2))
			laYPopup = centroAlto - parseInt((altoPopup/2))

		popup=window.open(url,"","width="+anchoPopup+",height="+altoPopup+",left = " + laXPopup + ",top = " + laYPopup+",resizable="+0+",status="+0+",scrollbars="+1);
	}