
function onPageOpen()
{
	var sPath = window.location.pathname;
	var pos = sPath.lastIndexOf('\\');
	if(pos < 0)
		pos = sPath.lastIndexOf('/');
	sPage = sPath.substring(pos + 1);

	var menuItem = document.getElementById(sPage);
	if( (menuItem == null) && (sPath.indexOf(".shtml") < 0) )
	{
		menuItem = document.getElementById("index.shtml")
	}
	
	if(menuItem)
	{
		menuItem.removeAttribute("href"); 
		menuItem.style.color = 'ForestGreen';//'#000000';
	}
}

function mailusat(to, site, display_name)
{
	at     = '@';
	mailto = 'm' + 'a' + 'i' + 'l' + 't' + 'o' + ':';
	
	if(display_name == '')
		display_name = to + at + site;

	document.write('<a href=\"' + mailto + to + at + site + '\">');
	document.write(display_name + '</a>');
}

