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