// JavaScript Document

var origineleBreedte = 800; 
var origineleHoogte = 600; 
var path = 'Mok&Sniffer_Interface.swf'; 
var flashdiv = 'site'; 

function resize(width,height)
{ 
   
   if (navigator.userAgent.indexOf("MSIE") != -1) { 
      var content = document.getElementById(flashdiv); 
      content.style.width = width; 
      content.style.height = height; 
   }else{ 
      var mySWF = document.getElementById('mySWF'); 
      mySWF.setAttribute('width',width); 
      mySWF.setAttribute('height',height); 
   } 
} 

function init()
{ 
   var target = document.getElementById(flashdiv); 
   if (navigator.userAgent.indexOf("MSIE") != -1) { 
      target.style.width = origineleBreedte; 
      target.style.height = origineleHoogte; 
      var output = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="100%" height="100%"><param name="movie" value="' + path + '" /><param name="quality" value="high" /><embed id="mySWF" src="' + path + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="100%" height="100%"></embed></object>'; 
   }else{ 
      var output = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="' + origineleBreedte + '" height="' + origineleHoogte + '"><param name="movie" value="' + path + '" /><param name="quality" value="high" /><embed id="mySWF" src="' + path + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + origineleBreedte + '" height="' + origineleHoogte + '"></embed></object>'; 
   } 
   target.innerHTML = output; 
} 
