
function MM_openBrWindow(theURL, winName, features)
{
    window.detwin = window.open(theURL, winName, features);
}

function recordOutboundLink(link) {
  try {
    pageTracker._trackEvent('Outbound Link', link.href);
    setTimeout('document.location = "' + link.href + '"', 100)
  }catch(err){}
}
function recordOutboundLink(link, supressRedirect) {
    try {
        pageTracker._trackEvent('Outbound Link', link.href);
        if(!supressRedirect)
            setTimeout('document.location = "' + link.href + '"', 100)
    } catch (err) {  }
}

