<!--
function openWeb(el_url, el_width, el_height, la_ventana) {

	var lf, tp, ifresize,ifscrollbars

	ifscrollbars=false;
	ifresize=true;

	var screenwidth=screen.width;
	var screenheight=screen.height;

	//ajustar el tamaņo de la pantalla restando la zona reservada para el navegador
	//segun sea mac o pc y el navegador, este ocupara mas o menos pantalla

	if (navigator.appVersion.indexOf("Mac") == -1) {
		//es un PC
		screenwidth-=0;
		screenheight-=(30+26);

		/*if (navigator.appName == "Microsoft Internet Explorer") {

		} else { //NetScape

		}/**/


	} else {
		//es un mac
		screenwidth-=0;
		screenheight-=50;
	}

	if (screenwidth<el_width || screenheight<el_height) {

		//la pantalla es de menor resolucion que la ventana a mostrar
		//ajustar con el mayor de los coeficientes

		if  (el_width/screenwidth >= el_height/screenheight) {

		 	//ajustar con la anchura

		 	el_height=Math.floor(screenwidth*el_height/el_width);
		 	el_width=screen.width;

			tp=Math.floor((screenheight-el_height)/2);
			lf=0;

		 } else {

		 	//ajustar con la altura

			el_width=Math.floor(screenheight*el_width/el_height);
			el_height=screenheight;

			lf=Math.floor((screenwidth-el_width)/2);
			tp=0;

		}

	} else {

		//la pantalla tiene mayor que la ventana que queremos abrir

		tp=Math.floor((screenheight-el_height)/2);
		lf=Math.floor((screenwidth-el_width)/2);

	}

	var especificaciones="top="+tp+", left="+lf+", toolbar=no,location=no, status=no,menubar=no,scrollbars="+ifscrollbars+", resizable="+ifresize+", width="+el_width+",height="+el_height;
	
	if (la_ventana==null) {
		la_ventana="ejemplo"	
	}
	
	var v = window.open(el_url,la_ventana,especificaciones);
	v.focus();
}
//-->