

function ButtonOver (buttontype,buttonname,cSelected) {
if (cSelected == "false"){
		document.getElementById(buttontype + buttonname).className = buttontype + "On";
	}
}

function ButtonOut (buttontype,buttonname,cSelected) {
if (cSelected == "false"){
		document.getElementById(buttontype + buttonname).className = buttontype + "Off";
	}
}

function show_hide(object_id){
	if (document.getElementById(object_id).style.display == "") {
    document.getElementById(object_id).style.display = "none";
    return;
  }
  else
  {
    document.getElementById(object_id).style.display = "";
    return;
  }
}

