// JavaScript Document
<!--
function abreVentana(direccion,nombre,ancho,alto){
	var posX = (screen.width-ancho)/2;
	var posY = (screen.height-alto)/2;
	//window.alert(posX+" , "+posY);
	var propiedades="toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=no,";
	propiedades += "left="+posX+",top="+posY+",width="+ancho+",height="+alto;
	window.open(direccion,nombre,propiedades);
}
 -->