function swf(filename,id,width,height) {
	var obj = document.getElementById(id);
	obj.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + width + '" height="' + height + '"><param name="movie" value="' + filename + '">  <embed src="' + filename + '" width="' + width + '" height="' + height + '"></embed></object>'
}
