<!--

	var Debug = {
		
		debugwindow: new Object(),
		
		init: function()
		{
			this.debugwindow = document.getElementById('debugwindow');
		},
		
		show: function()
		{
			this.debugwindow.style.display = 'block';
		},
		
		setpos: function(x, y)
		{
			this.debugwindow.style.left = x + "px";
			this.debugwindow.style.top = y + "px";	
		},
		
		addrow: function(rowtext)
		{
			var thetext = document.createTextNode(rowtext);
			var thebreak = document.createElement("br");
			
			this.debugwindow.appendChild(thetext);
			this.debugwindow.appendChild(thebreak);
		}
		
	}

//-->