// JavaScript Document

function recordOutboundLink(link, category, action) {
  try {
    var pageTracker=_gat._getTracker("UA-15669925-1");
    pageTracker._trackEvent(category, action);
    //setTimeout('document.location = "' + link.href + '"', 100)
	setTimeout(openLink(link.href), 100)
  }catch(err){}
}

function openLink(linkurl){
	window.open(linkurl);
}

