

function openAimForTheFactsTool() {
	// THIS METHOD IS CALLED FROM launch.jpg
	
	var flashvars = {};
	//For Omniture ActionSource Tracking
		flashvars.account = 'gsklovaza';
	
	var params = {};
		params.allowScriptAccess = "always";
		params.menu = "false";
		params.quality = "high";
		params.wmode = "window";
	var attributes = {};
	
	swfobject.embedSWF("/assets/flash/aim-for-the-facts/aim-for-the-facts.swf", "aimForFactsDiv", "950", "800", "9.0.115", "false", flashvars, params, attributes);
	
	var toolDiv = document.getElementById("aimForFactsDiv");
	toolDiv.className = "openAimForFacts";
	
}


function closeAimForTheFactsTool() {
	// THIS METHOD IS CALLED FROM aim-for-the-facts.swf
	var toolDiv = document.getElementById("aimForFactsDiv");
	toolDiv.className = "closedAimForFacts";
}





/*

function openSendToFriend() {
	// CALLED FROM INSIDE FLASH WHEN THE ANIMATION IS READY FOR THE DIV TO SWITCH
	var toolDiv = document.getElementById("aimForFactsDiv");
	toolDiv.wmode = "opaque";
	
	var friendDiv = document.getElementById("sendToFriendDiv");
	friendDiv.className = "openSendFriendDiv";
}
function closeSendToFriend() {
	//THIS SHOULD BE CALLED FROM THE DIV TO TELL THE FLASH TO CONTINUE
	var toolDiv = document.getElementById("aimForFactsDiv");
	toolDiv.wmode = "transparent";
	toolDiv.closeSendToFriend();
	
	var friendDiv = document.getElementById("sendToFriendDiv");
	friendDiv.className = "closedSendFriendDiv";
	
	
}*/