var flashFile = new Object();
var paramValues = new Object();

// User variabeles (standard):
flashFile.width = 100;
flashFile.height = 100;
flashFile.version = '8.0.0';
flashFile.noFlash = 'Om videos te kunnen bekijken heb je minimaal flashplayer 6.0.65 nodig.';

function runFlash()
{
	document.write('<object	type="application/x-shockwave-flash" data="' + flashFile.path + '" width="' + flashFile.width + '" height="' + flashFile.height + '" ');
	for(var a in paramValues)
	{
		document.write(a + '=' + paramValues[a] + '" ');
	}
	document.write('/>');
	document.write('<param name="movie" value="' + flashFile.path + '" />');
	for(var a in paramValues)
	{
		document.write('<param name="'+a+'" value="'+paramValues[a]+'" />');
	}
	document.write('</object>');
}