<!-- Hide from old browsers

// *****************************************************
// Cookies
var x = new Date ( );
y = x.getUTCFullYear(); z = y.toString(); cookie_value = z.substr(2);
y = x.getUTCMonth() + 1; z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
y = x.getUTCDate(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
cookie_value += "_";
y = x.getUTCHours(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
y = x.getUTCMinutes(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
y = x.getUTCSeconds(); z = "00" + y.toString(); i = z.length; cookie_value += z.substr(i-2);
 
cookie_name = "firstvisit";
if(document.cookie) {
  index = document.cookie.indexOf(cookie_name);
  } else { index = -1; }
if (index == -1) {
    document.cookie=cookie_name + "=" + cookie_value + "; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
  }
 
cookie_name = "lastvisit";
document.cookie=cookie_name + "=" + cookie_value + "; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
 
cookie_name = "pageviews";
if(document.cookie) {
  index = document.cookie.indexOf(cookie_name);
  } else { index = -1; }
if (index == -1) {
    document.cookie=cookie_name+"=1; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
  } else {
    countbegin = (document.cookie.indexOf("=", index) + 1);
    countend = document.cookie.indexOf(";", index);
    if (countend == -1) {
      countend = document.cookie.length;
    }
    count = eval(document.cookie.substring(countbegin, countend)) + 1;
    document.cookie=cookie_name+"="+count+"; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";
  }

cookie_name = "screenwidth";
document.cookie=cookie_name + "=" + screen.width + "; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";

cookie_name = "colordepth";
document.cookie=cookie_name + "=" + screen.colorDepth + "; expires=Wednesday, 01-Aug-2040 08:00:00 GMT; path=/;";



// *****************************************************
// Coding of email addresses

function writeadr(str, txt, sbj, cs)
{
var adr1 = "";
var adr2 = "";
adr1 = str;
adr1 += '\100';
adr1 += 'nexustelecom';
adr1 += '.com';
adr2 = adr1;
if (sbj) {adr1 += '?subject='+sbj};
document.write('<a ');
if (cs) {document.write('class="'+cs+'"');};
document.write(' hre'+'f="ma'+'ilto'+':'+adr1);
document.write('">');
if (txt) {document.write(txt);} else {document.write(adr2);};
document.write('</a>');
}

// *****************************************************
function surfto(urlid)
{
var newurl = "/stats/stats.php?&p1="+escape(urlid)+"&p2="+escape(document.location);
NewWindow = window.open(newurl,"NewWindow");
};

// *****************************************************
function download(urlid)
{
var newurl = "/stats/stats.php?&p1="+escape(urlid)+"&p2="+escape(document.location);
NewWindow = window.open(newurl,"NewWindow");
};

// *****************************************************
function redirect(urlid)
{
var newurl = "/stats/stats.php?&p1="+escape(urlid)+"&p2="+escape(document.location);
window.location = newurl;
};




// Unhide -->
