// JavaScript Document
function getFlashMovieObject(movieName){
	if(window.document[movieName]){
		return window.document[movieName];
	}
	if(navigator.appName.indexOf("Microsoft Internet")==-1){
		if(document.embeds && document.embeds[movieName]){
			return document.embeds[movieName];
		}
	// if (navigator.appName.indexOf("Microsoft Internet")!=-1)
	} else {
		return document.getElementById(movieName);
	}
}
function SendDataToFlashMovie2(string,waarde){
	var flashMovie=getFlashMovieObject("top_flash");
	flashMovie.SetVariable(string, waarde);
	//flashMovie.SetVariable("/:message", waarde);
}
function PlayFlashMovie(){
	var flashMovie=getFlashMovieObject("top_flash");
	flashMovie.Play();
	//embed.nativeProperty.anotherNativeMethod();
}
function go_flash(goto_link){
	SendDataToFlashMovie2('not_from_flash','yes');
	SendDataToFlashMovie2('set_goto_link_val',goto_link);
	PlayFlashMovie();
}