var swf = null;

function initialize() {
    dhtmlHistory.initialize();
    dhtmlHistory.addListener( historyChange );
    swf = document.getElementById("mainSWF");
	
	var hash = document.location.hash;
	hash = hash.substring(1, hash.length);
	refreshTitle( hash );
}

function insertFlash()
{
    document.write('<object type="application/x-shockwave-flash" id="mainSWF" name="mainSWF" data="main3.swf" width="100%" height="100%">\n');
    document.write('    <param name="allowScriptAccess" value="sameDomain" />\n');
    document.write('    <param name="swliveconnect" value="true" />\n');
    document.write('    <param name="movie" value="main3.swf" />\n');
    document.write('    <param name="quality" value="high" />\n');
    document.write('    <p>Ihr Browser verfügt offensichtlich derzeit nicht über das Flashplugin,\n');
    document.write('    jedenfalls nicht in der erforderlichen Version.<br>\n');
    document.write('    Bitte laden Sie es unter folgendem Link herunter.<br>\n');
    document.write('    <a href="http://www.macromedia.com/go/getflashplayer">\n');
    document.write('    http://www.macromedia.com/go/getflashplayer</a></p>\n');
    document.write('</object>\n');

}