	function ampliar(URLampliacion,nombreventana,ancho,alto) {
		izquierda = (screen.width) ? (screen.width-ancho)/2 : 0;
		arriba = (screen.height) ? (screen.height-alto)/2 : 0;
		if ((window.screen.availHeight - 15) > alto) {
	 		window.open(URLampliacion, nombreventana, "toolbar=no,location=no,status=yes,menubar=no,scrollbars=auto,left="+ izquierda +",top="+ arriba +",width="+ancho+",height="+alto+",resizable=no" );
		} else {
			ancho = ancho + 20
			alto = window.screen.availHeight;
			window.open(URLampliacion, nombreventana, "toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,left="+ izquierda +",top="+  arriba +",width="+ancho+",height="+alto+",resizable=no" );
		}
	}
