//----------------------------------------------------------------------------------------------------------------------
// test functions

function traceOut(p) {
	return;
	try {
		if(console && console.log) {
			console.log(p);
		}
	} catch(err) {
		//
	}
	
	if($('.__TEST_traceOut').length < 1) {
		//$('body').append('<div class="__TEST_traceOut"><div class="__TEST_traceOut-content"></div></div>');
	} else {
		$('.__TEST_traceOut').prepend('<br/>'+p);
	}
}

function traceOut2(p) {
	return;
	try {
		if(console && console.log) {
			console.log(p);
		}
	} catch(err) {
		//
	}
	
	if($('.__TEST_traceOut').length < 1) {
		//$('body').append('<div class="__TEST_traceOut"><div class="__TEST_traceOut-content"></div></div>');
	} else {
		$('.__TEST_traceOut').prepend('<br/>'+p);
	}
}
