<!--
 
function openWindow(goToURL)
{
	open(goToURL);
}

// pop up info box function

function showAbout(what){
	var showthis = eval ("document.all." + what);
	

showthis.style.display = '';
}

function hideAbout(what) {
	var hidethis = eval


 ("document.all." + what);
	hidethis.style.display = "none";
}


var head="display:''"

function change(divtoopen){

	if(!document.all) 
return;

	var nested = eval ("document.all." + divtoopen);

	if (nested.style.display=="none") 
{
         nested.style.display='';
		 
      } else {
         nested.style.display="none";
		 
      }
}



// -->

