// JavaScript Document
var showhide=true;
function ShowHide(obj) {
	if(showhide) {
		document.getElementById(obj).className = "on";
		showhide=false;
	}
	else {
		document.getElementById(obj).className = "off";
		showhide=true;
	}
}