function abreVentana(direccion,nombre,ancho,alto, scrolls) { 
	var colocaTop=(screen.height-alto)/2;
	var colocaLeft=(screen.width-ancho)/2;
	var propiedades="'toolbar=no,location=no,status=no,menubar=no,scrollbars="+scrolls+",resizable=no,width="+ancho+",height="+alto+",left="+colocaLeft+",top="+colocaTop+"'";
	window.open(direccion,nombre,propiedades);
}

function recarga(){
	window.location.reload();
}
