function debugWrite(msg) {
	document.debugForm.box.value = "**************\n"+msg+
		"\n\n"+document.debugForm.box.value
}

function debugInitialize() {
	document.writeln("<form name=\"debugForm\"><div align=\"center\">"+
		"<table cellpadding=\"2\" cellspacing=\"0\" border=\"0\">"+
		"<tr><td><span style=\"font-family:arial,verdana,helvetica;"+
		"font-size:12pt;font-weight:bold\">Debug output</style></td>"+
		"<td align=\"right\"><input type=\"button\" value=\"Clear\" onClick=\""+
		"this.form.box.value=''\" /></td></tr><tr><td colspan=\"2\">"+
		"<textarea name=\"box\" rows=\"20\" cols=\"100\" >"+
		"</textarea></td></tr></table></div></form>");
}

/*
if ( window.location.href.indexOf("nikebauerdev") > 0 )
	debugInitialize();
*/