    var files = flashFiles.split(","); 
	function embed(flashFile){
		if(flashFile!=null) {
		var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="286" height="156" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
		oeTags += '<param name="movie" value="'+flashFile+'" />';
		oeTags += '<param name="quality" value="high" />';
		oeTags += '<param name="bgcolor" value="#ffffff"/>';
		oeTags += '<embed src="'+flashFile+'" quality="high" bgcolor="#ffffff" width="286" height="156" name="player" align="middle" play="true" loop="false" quality="high" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">';
		oeTags += '<\/embed><\/object>';
		//alert(oeTags);
		document.getElementById('iVideo').innerHTML=oeTags;
		}
	}
	function embed2(flashFile,flashBg) {
		if(flashFile!=null) {
		var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="282" height="162" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">';
		oeTags += '<param name="movie" value="'+flashFile+'" />';
		oeTags += '<param name="quality" value="high" />';
		oeTags += '<param name="bgcolor" value="#'+flashBg+'"/>';
		oeTags += '<embed src="'+flashFile+'" quality="high" bgcolor="#ffffff" width="282" height="162" name="player" align="middle" play="true" loop="false" quality="high" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">';
		oeTags += '<\/embed><\/object>';
		//alert(oeTags);
		document.getElementById('iVideo').innerHTML=oeTags;
		//document.getElementById('iVideo').innerHTML="<div style='background-color:#"+flashBg+";'>"+oeTags+"</div>";
		}
	}