function swf(src,xwidth,xheight,xtrans){
	if(xtrans=="") { xtrans="1";  }
object = '';
object += '<object type="application/x-shockwave-flash" classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" id="param" width="'+xwidth+'" height="'+xheight+'">';
object += '<param name="movie" value="'+src+'">';
if(xtrans=="1") {  object += '<param name=wmode value=transparent>'; }
object += '<embed src="'+src+'" quality="high" wmode="transparent" bgcolor="#ffffff" menu="false" width="'+xwidth+'" height="'+xheight+'" swliveconnect="true" id="param" name="param" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"><\/embed>';
object += '<\/object>';
document.write(object);
}