// safe mailto links 
function ymail(country, account, domain)
{
  document.write("<a href='mai" + "lto:" + account + "&#64;" + domain + "." + country + "'>" 
  + account + "<img border='0' src='../at_trans.gif'  alt='@' width='15' height='12' />" + domain + "." + country + "</a>");
}
function ymaillink(country, account, domain, link)
{
  document.write("<a href='mai" + "lto:" + account + "&#64;" + domain
  + "." + country + "'>" + link + "</a>");
}


// pickRandom - Return a random number in a given range. If we're running
    // on an older browser that doesn't support 'Math.random()', we can fake
    // it by using the current time. This isn't ideal for mission-critical
    // security applications, but it's fine here. Note that we divide the
    // current time by 1000 to get rid of the milliseconds which Navigator
    // doesn't seem to take into account.
    
    function pickRandom(range) {
        if (Math.random)
            return Math.round(Math.random() * (range-1));
        else {
            var now = new Date();
            return (now.getTime() / 1000) % range;
        }
    }


<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
//-->