        var browserName = navigator.appName;
        var browserVer = parseInt(navigator.appVersion);
        var version = "";
        var msie4 = (browserName == "Microsoft Internet Explorer" && browserVer >= 4);
        if ((browserName == "Netscape" && browserVer >= 3) || msie4 || browserName=="Konqueror" || browserName=="Opera") {version = "n3";} else {version = "n2";}
            // Blurring links:
        function blurLink(theObject)    {   //
            if (msie4)  {theObject.blur();}
        }
        
            // decrypt helper function
        function decryptCharcode(n,start,end,offset)    {
            n = n + offset;
            if (offset > 0 && n > end)  {
                n = start + (n - end - 1);
            } else if (offset < 0 && n < start) {
                n = end - (start - n - 1);
            }
            return String.fromCharCode(n);
        }
            // decrypt string
        function decryptString(enc,offset)  {
            var dec = "";
            var len = enc.length;
            for(var i=0; i < len; i++)  {
                var n = enc.charCodeAt(i);
                if (n >= 0x2B && n <= 0x3A) {
                    dec += decryptCharcode(n,0x2B,0x3A,offset); // 0-9 . , - + / :
                } else if (n >= 0x40 && n <= 0x5A)  {
                    dec += decryptCharcode(n,0x40,0x5A,offset); // A-Z @
                } else if (n >= 0x61 && n <= 0x7A)  {
                    dec += decryptCharcode(n,0x61,0x7A,offset); // a-z
                } else {
                    dec += enc.charAt(i);
                }
            }
            return dec;
        }
            // decrypt spam-protected emails
        function linkTo_UnCryptMailto(s)    {
            location.href = decryptString(s,-2);
        }
        
        
        
        <!--
function bookmark(url,title){
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}
//-->
        
        
        <!--
var box = new Array();
box[0] = 'text1';
box[1] = 'text2';
box[2] = 'text3';
box[3] = 'text4';
box[4] = 'text5';
box[5] = 'text6';
box[6] = 'text7';
box[7] = 'text8';
box[8] = 'text9';
box[9] = 'text10';
box[10] = 'text11';
box[11] = 'text12';
box[12] = 'text13';
box[13] = 'text14';
box[14] = 'text15';
box[15] = 'text16';
box[16] = 'text17';
box[17] = 'text18';
box[18] = 'text19';
box[19] = 'text20';
box[20] = 'text21';
box[21] = 'text22';
box[22] = 'text23';
box[23] = 'text24';
box[24] = 'text25';
box[25] = 'text26';
box[26] = 'text27';
box[27] = 'text28';
box[28] = 'text29';
box[29] = 'text30';
box[30] = 'text31';
box[31] = 'text32';
box[32] = 'text33';
box[33] = 'text34';
box[34] = 'text35';
box[35] = 'text36';
box[36] = 'text37';
box[37] = 'text38';


function show(id)
{
        if (document.getElementById(id).style.display == "none")
        {
                for(i=0;i<box.length;i++)
                {
                        document.getElementById(box[i]).style.display = "none";
                }

                document.getElementById(id).style.display = "block";
        }
        else
        {
                document.getElementById(id).style.display = "none";
        }
}
//-->
        