function ventana(url, ancho, alto ) {
	izq = (screen.width - ancho)/2
	arriba = (screen.height - alto)/2
	w =window.open(url,"","width="+ancho+",height="+alto+",left="+izq+",top="+arriba+",scrollbars=YES,resizable=NO")
	w.focus()
}