function RunFoo()
{
	var x,y;
	var test1 = document.body.scrollHeight;
	var test2 = document.body.offsetHeight
	if (test1 > test2) // all but Explorer Mac
	{
		x = document.body.scrollWidth;
		y = document.body.scrollHeight;
	}
	else // Explorer Mac;
	     //would also work in Explorer 6 Strict, Mozilla and Safari
	{
		x = document.body.offsetWidth;
		y = document.body.offsetHeight;
	}
	
	var so = new SWFObject('includes/swf/buoncuore_new.swf?breedte='+x+'&hoogte='+y, 'website', '100%', '100%', '8', '#000000');
	so.useExpressInstall('js/expressinstall.swf');
	so.addParam('menu', 'false');
	so.addParam('scale', 'noscale');
	//so.addParam('salign', 'lt');
	if( so.write('flashcontent') )
	{
		var forcesize = new SWFForceSize( so, 752, 609 );
	}
}
