function Decrypt(f)
{
  var s=f,
      alph="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ",
      encrypted='', chr='';
  var re,re1;
  for(j=0; j< s.length; j++) {
      chr = s.substr(j,1).match(/[^a-zA-Z]/) ? s.substr(j,1) : '';
      if (chr)
          encrypted +=chr;
      if (!chr) {
          for(i=0; i<alph.length; i++) {
              chr = s.substr(j,1) != alph.substr(i,1) ? ''
              : i<13 ? alph.substr((i+13)%alph.length, 1)
              : i>12&&i<26 ? alph.substr((i+39)%alph.length, 1)
              : i>25&&i<39 ? alph.substr((i+65)%alph.length,1)
              : alph.substr((i+91)%alph.length, 1);
              if (chr)
                  encrypted += chr;
  }}}
  re = /\</g;
  encrypted = encrypted.replace(re, ".");
  re1 = /\>/g;
  encrypted = encrypted.replace(re1, "/");
  return encrypted;
}
function Reload(adr)
{
  var clr = Decrypt(adr);
  window.top.location = clr;
}
<!--{JS}-->

function build_url(www, domain, tld, clas, surl, img, anchor) 
{ 
var url='', link=''; 
url = 'http://' + www + '.' + domain + '.' + tld; 
link = '<a href="' + url + '" class="' + clas + '" onmouseover="window.status=\'' + surl + '\'; return true;" onMouseOut="top.status=\'\';"' + '>' + img + anchor + '</a>'; 

document.write(link); 
return false; 
} 