//================================================
//===	Wildgroup 2001 Oleg Myaskovsky
//===	Debug utils
//===	ver. 1.2
//================================================

//=============================================================
//===	debug function
//===	returns properties and methods od specified object
//===	params:
//===	obj		- javascript object
//=============================================================
function show_props(obj) {
	var result = '';
	if (obj && obj!=null)	{
		for (var i = 0; i < obj.length; i++)
			result += i + ' = ' + obj[i] + '<br>\n';
	}
	else
		result = 'Object is null or undefined';
	return result;
}

