var intro_timeout=2000;var intro_communication=false;var presentation_communication=false;var intro_handle;var presentation_handle;/* activeX || plugin? */function check_plugin() {	if ( navigator.appName.indexOf('Microsoft') != -1) {		intro_handle=window["fiobj"];	} else {		intro_handle=document["fiemb"];	}}function intro_preparation ( ) {	check_plugin();	window.setTimeout("intro_forward()",intro_timeout);}	// diese Funktion wird zuerst von Flash aufgerufenfunction intro_init ( ) {	// flash bekommt hier die Anforderung, zu bestŠtigen,	// um sicherzustellen, dass die Kommunikation in beide Richtungen funktioniert	intro_handle.js_to_flash("confirmation");}	// welche dann hier wohl hoffentlich ankommtfunction intro_confirmation ( ) {	intro_communication=true;}function presentation_confirmation ( ) {	presentation_communication=true;}function intro_forward ( ) {	if ( intro_communication != true ) {		window.location.href="intro.php";	}}function intro_fade_out ( ) {	document.getElementById("panel_intro").style.display="block";	document.getElementById("panel_presentation").style.display="block";}function intro_fade_done ( ) {	document.getElementById("panel_flash").style.display="none";}