//toggle visibility	
function toggle( targetId ){
	if (document.getElementById){
		target = document.getElementById( targetId );
			if (target.style.position != "static"){
				target.style.position = "static"; target.style.top = "0";
				} else {
					target.style.position = "absolute"; target.style.top = "-9999px";
					}
	}
}			
