// JavaScript Document

<!--//SHOW HIDE CODE
var state = 'none';
function showhide(layer_ref) 
{
	state = document.getElementById(layer_ref).style.display;
	if (state == 'block') {
			state = 'none'; 
	} else {
			state = 'block';
	}
	
	if (document.all) { //IS IE 4 or 5 (or 6 beta)
		eval( "document.all." + layer_ref + ".style.display = state");
	}
	if (document.layers) { //IS NETSCAPE 4 or below
		document.layers[layer_ref].display = state; 
	}
	if (document.getElementById &&!document.all) {
		hza = document.getElementById(layer_ref);
		hza.style.display = state; 
	}
}
//-->


<!-- JUMP MENU CODE
function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}
//-->

<!-- Popup code
function popUp(URL,size_x,size_y) {
	open(URL,'NewWindow','top=0,left=0,width='+size_x+',height='+size_y+',status=no,resizable=no,scrollbars=no');
}

//-->
