// Abre un Popup
function abrirPopup(url, nombre, ancho_popup, alto_popup, parametros, centrar) {
	var ancho_ventana;
	var alto_ventana;
	var pos_x = 0;
	var pos_y = 0;
	
	if(centrar == true) {
	//Calculamos la posicion central.
		if(navigator.userAgent.indexOf("MSIE") > 0) {
			ancho_ventana = window.document.body.clientWidth;
			alto_ventana = window.document.body.clientHeight;
		}
		else {
			ancho_ventana = window.innerWidth;
			alto_ventana = window.innerHeight;
		}
		
		var pos_x = Math.floor((ancho_ventana - ancho_popup) / 2);
		var pos_y = Math.floor((alto_ventana - alto_popup) / 2);
	}

	var mas_parametros = "top=" + pos_y + ",left=" + pos_x + ",width=" + ancho_popup + ",height=" + alto_popup;
	if(parametros != "")	mas_parametros += "," + parametros;
	
	window.open(url, nombre, mas_parametros);
}