// JavaScript Abre ventana a tamaņo del contenido
function popUp(URL,ancho,alto) {
	derecha=(screen.width-ancho)/2;
	arriba=(screen.height-alto)/2;
	parametros="toolbar=no,scrollbars=no,location=0,statusbar=no,menubar=no,resizable=no,width="+ancho+",height="+alto+",left="+derecha+",top="+arriba+"";
	fin=window.open(URL,"",parametros);	
}

