// get reference to the flash movie in the DOM
function getFlashMovie(movieName) 
{
     if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
     } else {
		return document[movieName];
	}
}
// let flash know that the video has been closed
function onVideoClose() 
{
	getFlashMovie("promo").onVideoClose();
}
// open video box
function callVideo(passedVideo) 
{
	$.fn.jqvideobox({video:passedVideo});
}