/*********************************************************************************/
/**			copyright (c) PlanetCalc.com, 2007  			**/
/**		    	debug output function		 				 */
/*********************************************************************************/


function OutputDebugString( str ) {
    var result = document.getElementById("debugarea");
	if (result) {	
		result.style.width = "100%";
		result.style.height = "300px";
		result.name = "debugarea";
		result.rows = "21";
		result.cols = "42";
		result.wrap = "OFF";
		result.value = result.value + "<BR>" + str;
	}
}

function OutputDebugObject( obj ) {
	var alertVal = "";
	for( var id in obj) {
		alertVal+= id +':' + obj[id] + ' ';
	}
	OutputDebugString( alertVal );	
}

