//these functions are for use during development - this file should be deleted before deployment
//write object properties to HTML
function writeProps(obj) { var result = ""; for (var i in obj) { result += i + " = " + obj[i] + "<BR>"}; document.write(result) }
//display object properties as an alert
function alertProps(obj) { var result = ""; for (var i in obj) { result += i + " = " + obj[i] + "\n"}; alert(result) }
