		var browser = new Browser();
		var UsingDevEdit = 0;

		// Copied from editor1.html .
		function Browser() {

		  this.IE    = false;
		  this.NS    = false;

		  var userAgent;
		  userAgent = navigator.userAgent;

		  if ((userAgent.indexOf("MSIE")) >= 0) {
			this.IE = true;
			return;
		  }

		  if ((userAgent.indexOf("Netscape6/")) >= 0) {
			this.NS = true;
			return;
		  }

		  if ((userAgent.indexOf("Gecko")) >= 0) {
			this.NS = true;
			return;
		  }
		}

		function ShowHelp(div, title, desc)
		{
			div = document.getElementById(div);
			div.style.display = 'inline';
			div.style.position = 'absolute';
			div.style.width = '170';
			div.style.backgroundColor = 'lightyellow';
			div.style.border = 'dashed 1px black';
			div.style.padding = '10px';
			div.innerHTML = '<b>' + title + '</b><br><div>' + desc + '</div>';
		}

		function HideHelp(div)
		{
			div = document.getElementById(div);
			div.style.display = 'none';
		}
