

  function showMe(theObject)
  {
    obj = eval(theObject);
    var temp = ""
    for (x in obj)
      temp += x+": "+ obj[x]+"\n";
    myAlert (temp);
  }

  function myAlert(theMessage)
  {
    if(modeDebug)
    {
        alert(theMessage)
    }
  }

  

 
