/*
 * Klevstul's JS Utility : Utility Functions
 *
 * Frode Klevstul
 * frode at klevstul dot com
 *
 */


//--------------------------------------------------------
// display properties for an object
//--------------------------------------------------------
var kUtil_showProps = function(obj) {
	var message="";
	for(prop in obj){
		if(obj.name){ 
			message += obj.name+".";
		}
		message += prop+"="+obj[prop]+"\n";
	}
	alert(message);
}
