\n'); } // This is the resizer function for the MAC and other non-PC users function macResizer( ht ) { //reset var here just to be safe var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1; if( isInternetExplorer ) { //IE on MAC likes the embeds document.embeds[0].height = ht; } else { //Think different stage.height = ht; document.stage.height = ht; document.all.stage.height = ht; document.getElementById('stage').height = ht; } } //------- Popup for the Video player ---------------------------------- function popupVideoPlayer(url) { window.open( url, 'video_window', 'width=555, height=450'); } //------- Popup for the Audio player ---------------------------------- //function popupAudioPlayer(idx) function popupAudioPlayer( idx ) { var url = "fileadmin/impact/audio_player.html?element="+idx; window.open( url, 'audio_window', 'width=420, height=400'); } //-->