//----External Interface Communications----//
function getSWF(movieName) {
	if (navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
   	} else {
   		return document[movieName];
  	}
}

function changeVideo(value) {
	getSWF("mainFlash").changeVideo(value);
	window.scroll(0,0);
}