function waiting_stop( id ){
	if (document.all){
		var mt = document.all(id).style;
		mt.display="none";
	}
	else if (document.getElementById){
		var mt = document.getElementById(id);
		mt.display="none";
	}
}

function option_open(){
	id = "option";
	if (document.all){
		var mt = document.all(id).style;
		mt.display="";
	}
	else if (document.getElementById){
		var mt = document.getElementById(id);
		mt.display="";
	}
}

function option_close(){
	id = "option";
	if (document.all){
		var mt = document.all(id).style;
		mt.display="none";
	}
	else if (document.getElementById){
		var mt = document.getElementById(id);
		mt.display="none";
	}
}
