<!--
var ie=navigator.appName.indexOf("Microsoft") != -1;		
// self resize
top.window.moveTo(0,0);
if(ie)
  {
	top.window.resizeTo(screen.availWidth,screen.availHeight);
	}
 else
  {  	
  	self.outerHeight=screen.availHeight;
  	self.outerWidth=screen.availWidth;
}

function ShowFlashHeader(hasRightVersion, source)
{
   if(hasRightVersion) {  // if we've detected an acceptable version
		var oeTags = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
		+ 'WIDTH="340" HEIGHT="338" id="flashHeader" '
		+ 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0">'
		+ '<PARAM NAME="MOVIE" VALUE="'+ source +'">'
		+ '<PARAM NAME="PLAY" VALUE="true">'
		+ '<PARAM NAME="LOOP" VALUE="true">'
		+ '<PARAM NAME="QUALITY" VALUE="high">'
		+ '<PARAM NAME="MENU" VALUE="false">'
		+ '<PARAM NAME="BGCOLOR" VALUE="#ffffff">'
		+ '<EMBED SRC="'+ source +'"'
		+ 'WIDTH="338" HEIGHT="340"'
		+ 'PLAY="true"'
		+ 'LOOP="true"'
		+ 'QUALITY="high"'
		+ 'MENU="false"'
		+ 'BGCOLOR="ffffff"'
		+ 'TYPE="application/x-shockwave-flash"'
		+ 'PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" name="flashHeader" swLiveConnect=true>'
		+ '<\/EMBED>'
		+ '<\/OBJECT>';
		
		document.write(oeTags);   // embed the flash movie
   } else {  // flash is too old or we can't detect the plugin
     
	 var imgAltText = new Array();
	 imgAltText['www'] = 'FUCHS Fördertechnik AG';
	 
     var alternateContent = '<a href="start.php"><img src="Bilder/startseite_bildteil.jpg" alt="FUCHS F&ouml;rdertechnik AG" width="340" height="338" border="0" /></a>';      
	 document.write(alternateContent);  // insert non-flash content
	 
   }
}
//-->