function tagIt( cmId, cmCat )
{
    if (cmId) {
        var s = window.top.location.search.indexOf('adlink');
        var e = (window.top.location.search.indexOf('&', s) > 0) ? window.top.location.search.indexOf('&', s) : window.top.location.search.length;
        var al = (s > 0) ? window.top.location.search.substring(s+7, e) : null;
        cmSetProduction();
        var cmError = false;
  		//alert("Tagging: " + cmId + ", " + cmCat );		
        cmCreatePageviewTag(cmId,  'overview',  null, cmCat, false, false, null, false, false, al, null, null);
    }
}

// Used with ExternalInterface from within Flash
function makeTag( section )
{
	tagIt( corepages[ section ], corecategories[ section ]);
	return true;
}

function makeManualLink(link, tag)
{
	cmCreateManualLinkClickTag(link, tag);
}

function makeConversionEvent(eventID, actionType)
{
	cmCreateConversionEventTag(eventID, actionType, "MOU", "0");
}