As far as I can tell after looking at your site, it seems that you have closed the <body> and <html> immediately after the flash header.
You can see this from the view source snipit below:
<body bgcolor="#cc3300">
<!--URL's die in de film worden gebruikt-->
<!--tekst die in de film wordt gebruikt-->
<!--
handcrafted in the
handcrafted in the
-->
<script language="JavaScript" type="text/javascript">
<!--
if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
alert("Deze pagina vereist AC_RunActiveContent.js.");
} else {
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) { // wanneer we een acceptabele versie hebben gedetecteerd
// sluit de Flash-film in
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0',
'width', '800',
'height', '150',
'src', 'includes/templates/rustic/common/logo',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'transparent',
'devicefont', 'false',
'id', 'logo',
'bgcolor', '#cc3300',
'name', 'logo',
'menu', 'false',
'allowScriptAccess','sameDomain',
'allowFullScreen','false',
'movie', 'includes/templates/rustic/common/logo',
'salign', ''
); //end AC code
} else { // versie van Flash is te laag of kan de insteekmodule niet vinden
var alternateContent = 'Plaats hier alternatieve HTML-inhoud. '
+ 'Voor deze inhoud is Adobe Flash Player vereist. '
+ '<a href=http://www.macromedia.com/go/getflash/>Flash downloaden</a>';
document.write(alternateContent); // Niet-Flash-inhoud invoegen
}
}
// -->
</script>
<noscript>
// Bied alternatieve inhoud voor browsers die scripts niet ondersteunen
// of waarvoor het gebruik van scripts is uitgeschakeld.
Plaats hier alternatieve HTML-inhoud. Voor deze inhoud is Adobe Flash Player vereist.
<a href="http://www.macromedia.com/go/getflash/">Flash downloaden</a>
</noscript>
</body>
</html>
This may be part of the problem.
Bookmarks