//
// Global bugUtils management -- BUT (Bugimus UTilities)
//

/*  // Example usage
this.meSee = meSee
this.meSee( new Array (
"this.parentObj.baseObj.offsetTop"
,"this.parentObj.baseObj.parentNode.offsetTop"
,"this.parentObj.baseObj.parentNode.parentNode.offsetTop"
,"bugimus.BMIscrollY()"
,"this.completeOffsetTop"
) )
*/


function meSee(debugArray) {
	try {
		debugString = "meSee::"
		for(i=0; i<debugArray.length; i++) {
			debugString += "\n  " + debugArray[i] + " = " + eval(debugArray[i])
		}
	
		alert( debugString )
	} catch (err) {
		alert("bugUtils::meSee: "+err)
	}
}

