	
	var ar = new Array();
	ar = document.location.pathname.split( '/' );
	var section = ( ar[1] == '' || ar[1] == 'default.htm' )? 'home': ar[1];

function mmenuFix() {
	document.getElementById(section).className = 'active';
}
function Email( address, server )
{
	var fullLink = '<a href="mailto:' + address + '@' + server + '">' + address + '@' + server + '</a>';
	var output = 'document.write(String.fromCharCode(';
	for( i = 0; i < fullLink.length; i++)
	{
		output += fullLink.charCodeAt( i );
		if( ( i + 1 ) != fullLink.length ) output += ', ';
	}
	output += '));';
	eval( output );
}
function openWin( url ) {
	remote = window.open( url, "remote", "toolbar=false, location=false, scrollbars=yes, resizable=no, width=300, height=450");
	remote.focus();
}