//schrijf inloggegevens naar cookie
function show_flash_output()
{
  if (AC_FL_RunContent == 0 || DetectFlashVer == 0) {
	  alert("This page requires AC_RunActiveContent.js.");
      } else {
	  var hasRightVersion = DetectFlashVer(7, 0, 14);
	  if(hasRightVersion) {  // if we've detected an acceptable version
		// embed the flash movie
		AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,14,0',
			'width', '519',
			'height', '94',
			'src', '/images/general/tagline.swf',
			'quality', 'high',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'align', 'middle',
			'play', 'true',
			'loop', 'true',
			'scale', 'showall',
			'wmode', 'transparent',
			'devicefont', 'false',
			'id', 'flash',
			'bgcolor', '#ffffff',
			'name', 'flash',
			'menu', 'true',
			'allowScriptAccess','sameDomain',
			'allowFullScreen','false',
			'movie', '/images/general/tagline',
			'salign', 'lt'
			); //end AC code
	   } else {  // flash is too old or we can't detect the plugin
		   document.write("<img src='/images/general/tagline_noflash.jpg' alt=noflash>")
 	          }
         } 
}

