// Omniture Product Specific File
// Desc: Used to store a single vendors information.
// Product: Pubsys (WorkBench)
////////////////////////////////////////////////////////////////////////////////

// XMLUltra Feed Fix - Added 12/5/2007 - JJ

// Check for content source
if(mistats.contentsource != undefined)
{
	// Temp var
	var new_cs = mistats.contentsource;

	// Filter HTML encoding and multiple blank spaces
	new_cs = new_cs.replace(/&#60;.+?&#62;/g, "");
	new_cs = new_cs.replace(/\s{2,}/g, "");

	// Reset mistats.contentsource with new
	mistats.contentsource = new_cs;
}

// Geography DART geopick - Added 1/25/2008 - JJ
var mistats_geography;

if(!mistats_geography) mistats.geography = mistats_geography;

// Prospero Comments Fix - Added 3/6/2008 - JJ
var internalSearch = window.location.hash;

// Check for hash in querystring
if(internalSearch.match('recent_comm'))
{
        mistats.pagename       = "Cmnt: " + mistats.pagename;
        mistats.channel       += ": Comments";
        mistats.pagelevel     += ": Comments";
        mistats.contentsource += "|comment";
}
else if(internalSearch.match('view_comm'))
{
        mistats.pagename       = "View Cmnt: " + mistats.pagename;
        mistats.channel       += ": View Comments";
        mistats.pagelevel     += ": View Comments";
        mistats.contentsource += "|view_comment";
}

