
function toggle(targetId, targetId2, targetId3) {
		if (document.getElementById){
			

		target3 = 	 document.getElementById( targetId3 );
				if (target3.style.display == ""){
					target3.style.display = "none";
				} else {
					target3.style.display = "";
				}
				
		target2 = document.getElementById( targetId2 );
				if (target2.style.display == "none"){
					target2.style.display = "";
				} else {
					target2.style.display = "none";
				}

		target = document.getElementById( targetId );
				if (target.style.display == "none"){
					target.style.display = "";				
				} else {
					target.style.display = "none";
				}
				
	
				
		} // END IF 
	} //END FUNCTION       
	

	
function toggleone(targetId) {
		if (document.getElementById){
				target = document.getElementById( targetId );
				if (target.style.display == "none"){
					target.style.display = "";				
				} else {
					target.style.display = "none";
				}
		} // END IF 
	} //END FUNCTION       




function toggleshow(targetId, targetId2, targetId3) {
		if (document.getElementById){
			

		target3 = 	 document.getElementById( targetId3 );
				if (target3.style.display == "none"){
					target3.style.display = "";
				} else {
					target3.style.display = "none";
				}
				
		target2 = document.getElementById( targetId2 );
				if (target2.style.display == "none"){
					target2.style.display = "";
				} else {
					target2.style.display = "none";
				}

		target = document.getElementById( targetId );
				if (target.style.display == ""){
					target.style.display = "none";				
				} else {
					target.style.display = "";
				}
				
	
				
		} // END IF 
	} //END FUNCTION       
	