<!--
function UnCryptMailto(s) {
        var n=0;
        var r="";
        for(var i=0;i<s.length;i++) 
		{ 
                n=s.charCodeAt(i); 
                if (n>=8364) 
			{n = 128;}
                r += String.fromCharCode(n-(1)); 
        	}
        return r;
	}

function linkTo_UnCryptMailto(s)  {
        location.href=UnCryptMailto(s);
}

function toggle(elementid) {
	var theItem = $(elementid);

	if( theItem.style.display == "none")	{
		new Effect.BlindDown(theItem, {duration: 0.5});
	}else{
		new Effect.BlindUp(theItem, {duration: 0.5});
	}
}

function hideLoader(loader, target) {
	new Effect.Fade($(loader), {duration: 0.5});
	new Effect.BlindDown($(target));
}

// toggle function 
function divToggle(item) {
   obj=document.getElementById(item);
   visible=(obj.style.display!="none")
   key=document.getElementById("x" + item);
   if (visible) {
     obj.style.display="none";
   } else {
      obj.style.display="block";
   }
}

// show function
function showDiv(item) {
    obj=document.getElementById(item);
	key=document.getElementById("x" + item);
	obj.style.display="block";
   
}

// hide function
function hideDiv(item) {
    obj=document.getElementById(item);
	key=document.getElementById("x" + item);
	obj.style.display="none";
}
-->

