/**
* Add a stub debug object so that debug statements can be left in scripts
* even when the debug class is not included, with a minimal CPU hit on the
* user's browser.
*/

function Debug_stub() {
	return(null);
}
Debug_stub.prototype.output = function() {
}

debug = new Debug_stub();

//-->
