<!--

function Debug()
{
	this.enabled = false;
	this.url = '';
}

Debug.prototype.Assert = function(condition, message)
{
	if(this.enabled && condition)
	{
		var client;
		client = (document.all) ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest();
		client.open('POST', this.url + '?msg=' + message, false);
		client.send('');
	}
}


-->