//toggle visibility	
function toggleform( targetId ){
	if (document.getElementById){
		target = document.getElementById( targetId );
			if (target.style.display != "inline"){
				target.style.display = "inline"; 
				} else {
					target.style.display = "none";
					}
	}
}			
