<!--

var Ventana
function abrir(url,ancho,alto,resi,scroll) {
	if (Ventana!= null && !Ventana.closed) {
		VentanaVieja=Ventana;
		VentanaVieja.name="VentanaVieja";
		Ventana.close();
	 }
	Ventana=window.open(url,"VentanaNueva","toolbar=no,location=no, status=no,menubar=no,left=160,top=200,resizable="+resi+",scrollbars="+scroll+",width="+ancho+",height="+alto);
	Ventana.focus();
}


//-->

