// JavaScript Document

function xdrTrace(inMessage){
	return;
	var theDiv		=		document.getElementById("XDRTrace");
	var theCont		=		document.createElement('div');
	if(!theDiv) return;
	
	var theTxt		=		document.createTextNode(inMessage);
	theCont.appendChild(theTxt);
	theDiv.appendChild(theCont);
}


