<!--
// Ajax-Request
function load(ziel)
{
	HTML_AJAX.replace('target',ziel);
}
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
// Handle all the the FSCommand messages in a Flash movie
function menu3_DoFSCommand(command, args) 
	{
  		var menu3Obj = InternetExplorer ? menu3 : document.menu3;
  		load(args);
	}
	// Hook for Internet Explorer 
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && 
	navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) 
{
	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
	document.write('on error resume next \n');
	document.write('Sub menu3_FSCommand(ByVal command, ByVal args)\n');
	document.write('  call menu3_DoFSCommand(command, args)\n');
	document.write('end sub\n');
	document.write('</SCRIPT\>\n');
}
//-->