/*                                                                           */
/*  Java code to do the quick link function                                  */
/* ========================================                                  */
/*                                                      hs*2004-08-06        */
   function Go(x) {
    if(x == "nothing") {
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
     return;
    }
    else if(x == "end")
    location.href = parent.location;
    else {
     location.href = x;
     document.forms[0].reset();
     document.forms[0].elements[0].blur();
    }
   }

