/**
  file: common.js
  Author: Jim Lucas <jlucas@cmsws.com>
  Date: 05/08/06
  Version: 0.0.1
  This is going to be my common.js file.
  It will contain many of the debug and other general javascript functions.
**/

function myAlert(msg) {
    if (DEBUG) {
        alert(msg);
    }
}

function toolTip(obj) {
    title = obj.getAttribute('title');
    myAlert(title);
}