function writeFlash(swfID, width, height, voiceID, trackID, styleID )
{
	var html =
		'<object type="application/x-shockwave-flash" data="flash/' + swfID + '" ' +
		'style="width:' + width + 'px;height:' + height + 'px">' +
		'<param name="quality" value="high"/>' +
		'<param name="wmode" value="transparent"/>' +
		'<param name="allowScriptAccess" value="always" />' +
		'<param name="flashVars" value="trackURL=' + trackID + '&voiceID=' + voiceID + '&styleID=' + styleID + '"/>' +
		'<param name="movie" value="flash/' + swfID + '"/>' +
		'</object>';

	document.write( html );
}
