
// toggle visibility 

function toggle( targetId ){
  if (document.getElementById){
  		target = document.getElementById( targetId );
  			if (target.className == "hidden"){
  				target.className = "visible";
  			} else {
  				target.className = "hidden";
  			}
  	}
}


