﻿function toggleSubmenu( parent )
{	var oSub = document.getElementById( parent.id + "_sub" );
	var oNavTable = document.getElementById("nav");
	var collNavSubs = oNavTable.getElementsByTagName ("table");
	
	for ( var i=0; i< collNavSubs.length; i++)
	{	collNavSubs[i].style.display = 'none';
		collNavSubs[i].parentNode.onclick = function anonymous(){toggleSubmenu(this);};
		collNavSubs[i].parentNode.className = 'navSection';
	}
		
	parent.onclick = null;
	parent.className = 'navSectionEx';
	oSub.style.display = 'block';
}

function decodeEmail( coded )
{	cipher = "n2FhKAltBO8fwU5sNpcDLdQzHPExYW6I740bTJRaVmkoCZr93vyGgM1SXeijuq";
	shift=coded.length;
	link="";
	
	for (i=0; i<coded.length; i++) 
	{	if (cipher.indexOf(coded.charAt(i))==-1)
		{	ltr=coded.charAt(i);
      		link+=(ltr);
    	}
    	else
    	{	ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length;
    		link+=(cipher.charAt(ltr));
    	}
    }
    
	document.write( "<a href='mailto:"+link+"'>Send Email...</a>" );
}

