<!--
function guided(tour) {
  msg=open(tour,"DisplayWindow3","HEIGHT=432,WIDTH=780,status=no,toolbar=no,directories=no,menubar=no,location=no,scrollbars=no,top=0,left=0");
}

// Get 13 digit time stamp plus 6 digit random number
today=new Date();
timetoday=today.getTime();
randm = getRandom(100000,999999);
timenow = timetoday + "" + randm;
function getRandom(min,max)
{return (Math.round(Math.random()*(max-min)))+min;}

// Get browser information
nets = (navigator.appName.indexOf("Netscape") != -1);
nseven = (navigator.userAgent.indexOf("Netscape/7") != -1);
bVer=parseInt(navigator.appVersion);
var isMSIE3 = false;

var name = "new_visited_us";
var path = "/";
var expDays = 365*20; // number of days the cookie should last
var exp = new Date();
exp.setTime(exp.getTime() + (expDays*24*60*60*1000)); 
var value = timenow;

if(navigator.appName == "Microsoft Internet Explorer" && bVer == 2 )  isMSIE3 = true;
function GetCookie(name) {
   if ((bVer > 2) && !isMSIE3) {
      var arg  = name + "=";
      var alen = arg.length;
      var clen = document.cookie.length;
      var i    = 0;
      while(i < clen) {
         var offset = i + alen;
         if(document.cookie.substring(i, offset) == arg) {
            var iEnd  = document.cookie.indexOf(";", offset);
            if(iEnd == -1) {
               iEnd = document.cookie.length;
            }
            return unescape(document.cookie.substring(offset, iEnd));
         }
         i = document.cookie.indexOf(" ", i) + 1;
         if(i == 0) {
            break;
         }
      }
      return null;
   }
}
function SetCookie(name, value, expires, path)
{
   if((bVer > 2) && !isMSIE3) {
      document.cookie = name + "=" + escape(value)
      + ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + ";domain=.globalsources.com"
      + ((path == null) ? "" : ("; path=" + path));
   } else {
      eval(name + " = '" + value + "'");
   }
}
function setUniqCookie() {
   if ((bVer > 2) && !isMSIE3) {
      snooky = GetCookie(name);
     // alert ("snooky : " + snooky);
	 if (snooky == null) {
	  SetCookie(name, value, exp, path);
	  }
   }
}
// -->
