function get(id) {
	re = document.getElementById(id);
	return re;
}
function vis(id) {
	Obj = get(id).style;
	if (Obj.display == "inline"){ Obj.display ="none";}
	else { Obj.display ="inline";}
}
