/*	
this code contains methods that allows the app to track events inside flash
*/
//
// public methods
//
// track trackVisitedIntertitial
function trackVisitedIntertitial() {
	send_to_omniture3();
}

// track trackQuitIntertitial
function trackQuitIntertitial() {
	send_to_omniture4();
}

// omniture methods
function send_to_omniture3() {
	var sendThis = "HBO: Big Love: Interstitial Complete";
	var s=s_gi(s_account);
	s.linkTrackVars='prop1,prop9,server';
	s.linkTrackEvents='None';
	s.server='hbo.com';
	s.prop1="Big Love"
	s.prop9=sendThis;
	s.tl(this,'o',sendThis);

}

function send_to_omniture4() {
	var sendThis = "HBO: Big Love: Interstitial Quit";
	var s=s_gi(s_account);
	s.linkTrackVars='prop1,prop9,server';
	s.linkTrackEvents='None';
	s.server='hbo.com';
	s.prop1="Big Love"
	s.prop9=sendThis;
	s.tl(this,'o',sendThis);
}

