

function callToActionscript(str) 
{
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	
	if (isIE) {
		window["flash-movie"].play();
	} else {
		document.getElementById("flash-movie").play();
	}
}
