
function swf(src, width, height, noflash, isnoflash) {

	if (isnoflash) {
		return noflash;
	}

	var html = "";
	html += '<object height="'+height+'" width="'+width+'" type="application/x-shockwave-flash" data="'+src+'">\n';
	html += ' <param name="movie" value="'+src+'" />\n';
	html += ' <param name="quality" value="high" />\n';
	html += ' '+noflash+'';
	html += '</object>\n';

	return html;
}

