// JavaScript Document
//copyright Lashgraphics Pty Ltd 2007
//reproduction of this script without permission is strictly prohibited.
// toggles information or menu items defined by id number
function showstuff(whichone){
var thisTrack = document.getElementById(whichone).style;
thisTrack.display=(thisTrack.display=="block")?"none":"block";
return false;
}

function showHide(show,hide) {
	document.getElementById(show).style.display = "block";
	document.getElementById(hide).style.display = "none";
}