//
// MoreInfo Client Side Handling Code
//
// Requires common.js
//
function MoreInfo_Switch(target)
{
    var target = target;
    if (target) {
        while (target.className!="moreinfo_show" && target.className!="moreinfo_hide" && target.tagName!="BODY") {
            target = target.parentNode;
        }
        if (target.tagName!="BODY") {
            if (target.className=="moreinfo_show")
            {
                target.className="moreinfo_hide";
            }
            else 
            {
                target.className="moreinfo_show";
            }
        }
    }
}
    
