	// <![CDATA[

var writit = function (text,id)

	{

		if (document.getElementById(id))
		{
			x = document.getElementById(id);
			x.innerHTML = '';
			x.innerHTML = text;
		}
		else if (document.all)
		{
			x = document.all[id];
			x.innerHTML = text;
		}
		else if (document.layers)
		{
			x = document.layers[id];
			x.document.open();
			x.document.write(text);
			x.document.close();
		}
		
		
		return "yes";
	}
	// ]]>

