	opentab = function(id){
		var s = document.getElementById(id).style;

		if( s.display == "none") {
			s.display = "block";
		} else {
			s.display = "none";
		}
	}

