// Scripts to display non-crawlable Javascript links

// Links to the page given by a splitted URL.
// The arguments are the tokens forming the splitted URL.
function link()
{
   var url = '';
   for (i = 0; i < arguments.length; i++)
   { 
      url = url + arguments[i];
   }
   go(url);
}