<!--
    function thisMovie(movieName) {
        var isIE = navigator.appName.indexOf("Microsoft") != -1;
        return (isIE) ? window[movieName] : document[movieName];
    }

    function makeCall(str) {
		thisMovie("myMovie").asFunc(str);
    }

    function jsFunc(str) {      
		document.getElementById('testing').style.zIndex = 1000;	
		makeCall("test");		
    }

    function js_Func(str) {      
	    document.getElementById('testing').style.zIndex = -1;
    }
// -->
