function SWF(sID, sFile, sWidth, sHeight){
	var embed;
	embed = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="' + sWidth + '" height="' + sHeight + '" id="' + sID + '" align="middle">';
	embed = embed + '<param name="allowScriptAccess" value="sameDomain" />';
	embed = embed + '<param name="allowFullScreen" value="false" />';
	embed = embed + '<param name="movie" value="' + sFile + '" />';
	embed = embed + '<param name="quality" value="high" />';
	embed = embed + '<param name="bgcolor" value="#ffffff" />';
	embed = embed + '<embed src="' + sFile + '" quality="high" bgcolor="#ffffff" width="' + sWidth + '" height="' + sHeight + '" name="' + sID + '" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />';
	embed = embed + '</object>';
	document.write(embed);
}