function Swf(swfURL, swfWidth, swfHeight) {			// create an object to hold basic swf parameters
	this.swfURL = swfURL;
	this.swfWidth = swfWidth;
	this.swfHeight = swfHeight;
}

function pageInit() {
	//alert("Bla!");
	for (var i=0; i<arguments.length; i++) {
		var el = document.getElementById(arguments[i]); //"swf"+i);
		el.innerHTML = renderSWF(eval(arguments[i]).swfURL, eval(arguments[i]).swfWidth, eval(arguments[i]).swfHeight); //write out swf!
	}
}