function flash(swf,width,height) {
	var fla = "";
	fla += '<object codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+width+'" height="'+height+'">';
	fla += '<param name="movie" value="'+swf+'" />';
	fla += '<param name="wmode" value="transparent" />';
	fla += '<param name="quality" value="high" />';
	fla += '<embed src="'+swf+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" wmode="transparent" type="application/x-shockwave-flash" width="'+width+'" height="'+height+'"></embed>';
	fla += '</object>';
	document.write(fla);
}