/*
* onBeforeClose
*
* ExternalInterface callback to detect browser close, back, next
*
* NOTE: myExperience_1 is the id from the object tag. This determines what dom object to attempt the callback on.
*		This will need to be updated if the id is different.
*/
window.onbeforeunload = closeInteractiveSession;

function closeInteractiveSession()
{
	var swf = document.myExperience || window.myExperience;
	swf.swfFunction();
}
