function AbreVentana(url,name,alto,ancho) {



 switch(url) {

   case "Seguimiento":

    var req = "https://secure.generalurquiza.com.ar/SeguimientoOnLine/";   

    var scroll = 1;

    break;

   

   case "HorariosyDestinos":

    var req = "horarios.html";

    var scroll = 1;

    break;

   

   case "RecorrerConPuntos":

    var req =  "viajeros-frecuentes/index-beneficios.html";

    var scroll = 0;

    break;



   case "RecorrerSinPuntos":

    var req =  "viajeros-frecuentes/index.html";

    var scroll = 0;    

    break;

   

   case "Turismo":

    var req = "turismo.html";

    var scroll = 1;    

    break;

   

   case "ViajesEspeciales":

    var req = "formulario-1.html";

    var scroll = 1;    

    break;

 }



 var Wnd=window.open(req,name,"toolbar=0,location=0,status=1,menubar=0,scrollbars="+scroll+",width="+ancho+",height="+alto);

 Wnd.focus();

}

