function ReWriteFlashExtended (id, url, width, height, version, noflashcontent) {
	//version = (version=='')?4:version;
	var flash = "";
	if (document.getElementById) {	
		if (document.getElementById(id)) {	
			flash += '<object type="application/x-shockwave-flash" data="' + url + '" width=' + width + ' height=' + height + '">';
			flash += '<param name="movie" value="' + url + '">';
			flash += '<param name="quality" value="high">';
			flash += '<param name="wmode" value="transparent" />';
			flash += '<param name="swliveconnect" value="false">';
			flash += noflashcontent;
			flash += '</object>'; 
			document.getElementById(id).innerHTML = flash;
		}
	}
}
