function flashModule(path, id, param, color, toelichting, breedte, hoogte)
{
	if(path == null || path == "null") return;
	if(id == null || id == "null") return;
	if(param == null || param == "null") param = "";
	if(color == null || color == "null") color = "#FFFFFF";
	if(breedte == null || breedte == "null") breedte = "490";
	if(hoogte == null || hoogte == "null") hoogte = "140";
	
	breedte += "";
	hoogte += "";
	
	if (breedte.indexOf ('%')!=-1) {
		toelichtingWidth = 180;
	} else {
		toelichtingWidth = 670-(breedte-0);
  }
  
	var flashvarparam = "<param name=\"FlashVars\" value=\"p="+param+"\" />";
	var bgcolor = "<param name=\"bgcolor\" value=\""+color+"\" />'";
	
	document.write('<div class="formbox iepaddingfix" style="margin-top:0px;">');
	document.write('<p style="width:'+toelichtingWidth+'px; margin-top:20px;">'+toelichting+'</p>');
	document.write('<div class="formboxForm">');
	document.write('<object type="application/x-shockwave-flash" data="'+path+'" id="'+id+'" width="'+breedte+'" height="'+hoogte+'">');
	document.write(flashvarparam);
	document.write('<param name="movie" value="'+path+'" />');
	document.write('<param name="scale" value="noscale" />');
	document.write('<param name="quality" value="high" />');
	document.write(bgcolor);
	document.write('<a href="https://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">');
	document.write('<img src="https://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" style="border:none;" />');
	document.write('</a>');	
	document.write('</object>');
	document.write('</div>');
	document.write('<div class="formboxCloser"></div>');
	document.write('</div>');
}

function flashModule2(path, id, param, color, breedte, hoogte)
{
	if(path == null || path == "null") return;
	if(id == null || id == "null") return;
	if(param == null || param == "null") param = "";
	if(color == null || color == "null") color = "#FFFFFF";
	if(breedte == null || breedte == "null") breedte = "490";
	if(hoogte == null || hoogte == "null") hoogte = "140";
	
	breedte += "";
	hoogte += "";
  
	var flashvarparam = "<param name=\"FlashVars\" value=\"p="+param+"\" />";
	var bgcolor = "<param name=\"bgcolor\" value=\""+color+"\" />'";
	
	document.write('<object type="application/x-shockwave-flash" data="'+path+'" id="'+id+'" width="'+breedte+'" height="'+hoogte+'">');
	document.write(flashvarparam);
	document.write('<param name="movie" value="'+path+'" />');
	document.write('<param name="scale" value="noscale" />');
	document.write('<param name="quality" value="high" />');
	document.write(bgcolor);
	document.write('<a href="https://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">');
	document.write('<img src="https://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" style="border:none;" />');
	document.write('</a>');	
	document.write('</object>');
}