function trace(txt){
		
		var printMessage = (txt || '').toString();
		if( $('#trace').size() < 1 ) {
			$('body').append('<div id="trace"></div>');
			$('#trace').css({
				'position' : 'fixed',
				'color' : 'black',
				'top' : '0',
				'right' : '0',
				'background-color' : '#fff', 
				'height' : '100%',
				'width' : '200px',
				'text-align' : 'left',
				'font-size' : '12px',
				'font-family' : 'Consolas',
				'padding' : '5px',
				'margin' : '0 auto',
				'border' : '1px solid black',
				'overflow-y' : 'scroll',
				'z-index' : '1000'
			});
		}
		$('#trace').append('<p>' + printMessage + '</p>');
		
	
}

