function wctl(thisId){
		if(document.getElementById(thisId).style.overflow == "hidden"){
			with(document.getElementById(thisId).style)
			{
				overflow = "visible";
				height = "auto";
			}
		}else{
			with(document.getElementById(thisId).style)
			{
				overflow = "hidden";
				height = "0px";
			}
		}
	}