// JavaScript Document
<!--
		function OpenMenu(id){ 
			document.getElementById( id ).style.visibility = 'visible';
		}
		function CloseMenu(id){ 
			document.getElementById( id ).style.visibility = 'hidden';
		}
		function OpenAll() {
			OpenMenu('level2Menu01'); OpenMenu('level2Menu02');
		}
		function CloseAll() {
			CloseMenu('level2Menu01'); CloseMenu('level2Menu02');
		}
	
var scrj = 1;
function softScrollBack() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat")
      var scdist = document.body.parentNode.scrollTop;
   else
      var scdist = document.body.scrollTop;
   if(scrj<50 && scdist) {
      scdist = (scdist>2) ? Math.ceil(scdist*.2) : 1;
      scrj++;
      scrollBy(0,-scdist);
      setTimeout("softScrollBack()",20);
   } else {
      scrollTo(0,0);
      scrj = 1;
   }
}
function chgColor(obj,col) {
   obj.style.color = col;
}
function playSound(id) {
   if(document.all && document.all[id].FileName)
      document.all[id].Play();
}

if(document.getElementById){
	document.writeln('<style type="text/css" media="all">');
	document.writeln('<!--');
	document.writeln('.sidehide{display:none}');
	document.writeln('-->');
	document.writeln('</style>');
       }
function showHide(id){
	var disp = document.getElementById(id).style.display;
	if(disp == "block"){
		document.getElementById(id).style.display = "none";
	}
       else{
		document.getElementById(id).style.display = "block";
	}
	return false;
       }
function hideShow(id){
	var disp = document.getElementById(id).style.display;
	if(disp == "none"){
		document.getElementById(id).style.display = "block";
	}
       else{
		document.getElementById(id).style.display = "none";
	}
	return false;
       }
	// -->