function passKeyToLinks(key){    var paramvalue = ""	if (key.length > 8)         {paramvalue = "&u=" + key}               else         {paramvalue = "&pa=" + key}     //do not append the links if user is opening the main website or any other link that has no ?open parameter  	if  (window.location.href.indexOf("http://www.netneon.com") > -1)               {  setlinks(paramvalue);                   return;                  }}function setlinks(v) {  // add the user param to the link, if it's a Wonderagent link, not a Javascript link or a Mailto link and it doesn't already include a user param  //       (window.location.href.indexOf('?') == -1))  for (var i=0; i < document.links.length; i++)  {      if ((document.links[i].href.indexOf('netneon.com') > -1) &&         (document.links[i].href.indexOf('mailto') == -1) &&          (document.links[i].href.indexOf('catalog.netneon') == -1) &&          (document.links[i].href.indexOf('javascript') == -1) &&          (document.links[i].href.indexOf(v) == -1))         {  if ((document.links[i].href.indexOf('?') == -1) & (document.links[i].href.indexOf('!') == -1))               document.links[i].href=document.links[i].href + "!open" + v               else               document.links[i].href=document.links[i].href + v;          }     }}