// JavaScript Document

	function onOk(id)
	{
		var obj=document.getElementById(id);
		obj.style.display = "inline";
		//obj.setTimeout(3);
	}
	function onNotOk(ida)
	{
		var objj=document.getElementById(ida);
		objj.style.display="none";
	}

