function toggle( targetId, targetBId ){
  if (document.getElementById){
  		target = document.getElementById( targetId );
		targetB = document.getElementById( targetBId );
  			if (target.style.display == "none"){
		//		target.style.top = "-550px";
  				target.style.display = "";
  			} else {
				//target.style.top = "";
				 target.style.display = "none";
  			}
  	}

	resize();
}


function reset () {

myTimer = setTimeout( "resize()" , 200 );

}

function resize () {

	if ( document.all ) {

		menu = document.getElementById( "left" );

		total = document.getElementById( "inutile" ).offsetHeight;

		menu.style.height = total - 50;

	}

}

