
<!--

function SetRefSiteCookie()
{
   
  var myurl = document.referrer.toLowerCase();
  if (myurl.length >= 5) {
    islocal =  (myurl.match('http://www.thunderbike.co.nz')) || (myurl.match('http://thunderbike.co.nz')) ;
    if (!islocal) {
       var thistime = new Date();
       var cexdate = thistime.getTime() + (24 * 60 * 60 * 1000);  
       thistime.setTime(cexdate);
       document.cookie = "TSRefSite=" + myurl+ "; expires=" + thistime.toGMTString();
       document.cookie = "TSLandURL=" + document.URL+ "; expires=" + thistime.toGMTString();
   } 
  }
}

-->