// JavaScript Document
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);

function menuOver( obj ) {
	obj.style.backgroundColor = "#004400" ;
}
function menuOut( obj ) {
	obj.style.backgroundColor = "" ;
}
function move( adrs ) {
	location.href =  adrs ;
}
function show( object ) {
  if (document.layers && document.layers[object])
    document.layers[object].visibility = 'visible';
  else if (document.all)
    document.all[object].style.visibility = 'visible';
  else if (document.getElementById)
    document.getElementById(object).style.visibility = 'visible';

 }
function hide(object) {
  if (document.layers && document.layers[object])
    document.layers[object].visibility = 'hidden';
  else if (document.all)
    document.all[object].style.visibility = 'hidden';
  else if (document.getElementById)
    document.getElementById(object).style.visibility = 'hidden';
  }

function collapse(object){
  if (document.layers && document.layers[object])
    document.layers[object].display = 'none';
  else if (document.getElementById)
    document.getElementById(object).style.display = 'none';
  else if (document.all)
    document.all[object].style.display = 'none';
}
 
function rebuild (object){
  if (document.layers && document.layers[object])
    document.layers[object].display = '';
  else if (document.getElementById)
    document.getElementById(object).style.display = ''; 
  else if (document.all)
    document.all[object].style.display = '';
}
 