function debug(string)
{
    //to test hitbox just uncomment the following statement:
    //alert("track: " + string);
}

// call this from the flash or from anywhere
// with the name of the section to track it
function track(trackString)
{
    switch (trackString)
    {
    case "XXXXX":
        debug(trackString);
        break;
    default:
        debug(trackString);
        _hbPageView(trackString, "/Hidalgo");
        break;
    }
}

