﻿/*
function change_menu(menuid, func){
	if(func == "back"){
		document.getElementById('menu_bt_'+menuid).style.backgroundImage = "url('images/buttons/bt"+menuid+"_simple.png')";
	}
	if(func == "setup"){
		document.getElementById('menu_bt_'+menuid).style.backgroundImage = "url('images/buttons/bt"+menuid+"_over.png')";
	}
}
*/

function getFlashMovie(movieName) {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
}
function formSend() {
	var text = "this is test msgr";
	getFlashMovie("main_menu").sendTextToFlash(text);
}
function getTextFromFlash(str) {
	alert(str);
}

