 <!-- Hide script from old browsers

 document.WM = new Object();
 document.WM.hirelist = new Object();
 document.WM.hirelist.expandos = new Array();
 document.WM.hirelist.heights = new Array();
 document.WM.hirelist.names = new Array();

 function WM_Toggle(id) {
	
	if (document.all) {
		if (document.all[id].style.display == 'none')
			document.all[id].style.display = '';
		else
			document.all[id].style.display = 'none';
	}
	
	else if (document.getElementById) {
		if (document.getElementById(id).style.display == 'none')
			document.getElementById(id).style.display = 'block';
		else
			document.getElementById(id).style.display = 'none';
	} 
	
	else if (document.layers) {
		if (parseInt(id + 1)) {
			ditem = id + 1;
		} 
		else {
			ditem = document.WM.hirelist.names[id];
		}
		if (document.WM.hirelist.expandos[ditem].clip.bottom == 0) {
			document.WM.hirelist.expandos[ditem].clip.bottom = document.WM.hirelist.heights[ditem];
		} 
		else {
			document.WM.hirelist.expandos[ditem].clip.bottom = 0;
		}
		WM_align();
	}

 }

 function WM_align() {

	var i,j,stupid_netscape_array_infinate_loop_error;
	
	stupid_netscape_array_infinate_loop_error = document.WM.hirelist.expandos.length;

	for(i=0; i<stupid_netscape_array_infinate_loop_error; i++) {
		j = i + 1;
		
		if(document.WM.hirelist.expandos[j]){
			if(document.layers) {
				document.WM.hirelist.expandos[j].top = document.WM.hirelist.expandos[i].top + document.WM.hirelist.expandos[i].clip.bottom;
			}
		}
	}
 
 }

 function WM_initialize_navigation(section){

	if (document.all) {
		for(i = 0; i < document.all('navigation').all.length; i++){
			if(document.all('navigation').all[i].className == 'navi'){
				document.all('navigation').all[i].style.display = 'none';
			}
		}
		if (section != "") {
			document.all('navigation').all(section).style.display = 'block';
		}
	} 
	
	else if (document.getElementsByTagName && document.getElementById){
		var contained = document.getElementById('navigation').getElementsByTagName('ul');
		for(i = 0; i < contained.length; i++){
			if(contained[i].getAttribute('class') == 'navi'){
				contained[i].style.display = 'none';
			}
		}
		if (section != "") {
			document.getElementById(section).style.display = 'block';
		}
	}
	
	else if(document.layers) {
		for(i=0; i<document.layers['menu'].document.layers.length; i++){
			document.WM.hirelist.expandos[i] = document.layers['navigation'].document.layers[i];
			document.WM.hirelist.names[document.layers['navigation'].document.layers[i].name] = i;
			document.WM.hirelist.heights[i] = document.WM.hirelist.expandos[i].clip.bottom;
		}
		for (p=0;p<document.WM.hirelist.expandos.length;p=p+2){
			WM_toggle(p);
		}
	} 
	 
 }

 function WM_initialize_toolbar(){

	if(document.layers) {
		for(i=0; i<document.layers['menu'].document.layers.length; i++){
			document.WM.hirelist.expandos[i] = document.layers['menu'].document.layers[i];
			document.WM.hirelist.names[document.layers['menu'].document.layers[i].name] = i;
			document.WM.hirelist.heights[i] = document.WM.hirelist.expandos[i].clip.bottom;
		}
		for (p=0;p<document.WM.hirelist.expandos.length;p=p+2){
			WM_toggle(p);
		}
		document.layers['menu'].visibility = 'visible';
	} 
	
	else if (document.all){
		for(i = 0; i < document.all('menu').all.length; i++){
			document.all('menu').all[i].style.position = 'relative';
			if(document.all('menu').all[i].className == 'menu'){
				document.all('menu').all[i].style.display = 'none';
			}
		}
		document.all('menu').style.visibility = 'visible';	
	} 
	
	else if (document.getElementsByTagName && document.getElementById){
		var contained = document.getElementById('menu').getElementsByTagName('ul');
		for(i = 0; i < contained.length; i++){
			contained[i].style.position = 'relative';
			if(contained[i].getAttribute('class') == 'menu'){
				contained[i].style.display = 'none';
			}
		}
		document.getElementById('menu').style.visibility = 'visible';
	}
 
 }

 function WM_imageToggle(daImage, src1, src2, netscape_container){

	var objStr,obj;
	// Check to make sure that images are supported in the DOM.
	myImage = document.images[daImage];
	
	if (document.layers){
		myImage = document.layers['menu'].document.layers[netscape_container].document.images[daImage];
	}
	
	if (document.images){
		// Check to see whether you are using a name, number, or object
		if (myImage.src == src1){
			myImage.src = src2;
		} 
		else {
			myImage.src = src1;
		}
	}
 }
 
 function Menu_Show(id) {
	if (document.all) {
		document.all[id].style.display = 'block';
	}
	else if (document.getElementById) {
		document.getElementById(id).style.display = 'block';
	}
	else if (document.layers) {
		document.layers[id].style.display = 'block';
	}
 }

 function Menu_Hide(id) {
	if (document.all) {
		document.all[id].style.display = 'none';
	}
	else if (document.getElementById) {
		document.getElementById(id).style.display = 'none';
	}
	else if (document.layers) {
		document.layers[id].style.display = 'none';
	}
 }

 function Menu_Toggle(id) {
 	if (document.all) {
 		if (document.all[id].style.display == 'none') 
 			document.all[id].style.display = '';
 		else
 			document.all[id].style.display = 'none';
 	}
 	
 	else if (document.getElementById) {
 		if (document.getElementById(id).style.display == 'none') {
 			document.getElementById(id).style.display = 'block';
 		}
 		else {
 			document.getElementById(id).style.display = 'none';
 		}
 	}
 }
 
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_jumpMenu( targ, selObj, restore )
{ //v3.0
  eval( targ + ".location='" + selObj.options[selObj.selectedIndex].value + "'" );
  if( restore ) selObj.selectedIndex = 0;
}

function MM_jumpMenuSelectUser( targ, selObj, restore )
{ //v3.0
  eval( targ + ".location='index.php?action=a1100&" + selObj.name + "=" + selObj.options[selObj.selectedIndex].value + "'" );
  if( restore ) selObj.selectedIndex = 0;
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}

function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);
  
 // End the hiding -->
