over = '#cccc99';
back = '#aaaa77';
c2 = '#000000';
confirmMsg = '';

function Click (frame,url)
  {
    location.href = url;
  }

function MouseOverLink (adiv)
  {
    adiv.style.backgroundColor = over;
//    adiv.style.borderColor = c2;
  }

function MouseOut (adiv)
  {
    adiv.style.backgroundColor = back;
//    adiv.style.borderColor = c2;
  }

function OpenWin(url, titel)
  {
    newWin = window.open(url, titel, "toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbar=no, resizable=yes, width=660, height=550, left=80, top=40")
    newWin.focus()
  }

function opentree(tree)
{
	var cls = '';
	if (document.getElementById) {
		var el = document.getElementById (tree);
		if (el && el.className) {
			el.className = (el.className == 'boxOpen') ? 'boxClose' : 'boxOpen';
		}
	}
	if (navigator.appName == 'Microsoft Internet Explorer' && document.documentElement && navigator.userAgent.indexOf ('Opera') == -1) parent.setScrollInIE();
	return false;
}

function mover(o)
{
	o.className = 'navTitleOver';
}

function mout(o)
{
	o.className = 'navTitle';
}