function toggle( targetId ){
	if (document.getElementById){
	target = document.getElementById( targetId );
	target.style.display = "";
}
}

function togglehide( targetId ){
  		if (document.getElementById){
  		target = document.getElementById( targetId );
		target.style.display = "none";
  }
}
