function embedFlash(placeholderName, url, width, height){
	var slot = document.getElementById(placeholderName);
	var tag = '<object type="application/x-shockwave-flash" data="' + url + '" width="' + width + '" height="' + height + '">';
	tag += '<param name="movie" value="' + url + '">';
	tag += '</object>';
	slot.innerHTML = tag;
}