		function deletePlayer(theWrapper, thePlaceholder, thePlayerId) { 
				swfobject.removeSWF(thePlayerId);
				var tmp=document.getElementById(theWrapper);
				if (tmp) { tmp.innerHTML = "<div id=" + thePlaceholder + "></div>"; }
		}
		function createPlayer(thePlaceholder, theImage) {
				var flashvars = {
				}
				var params = {
						allowscriptaccess:"sameDomain",
						movie:theImage
				}
				var attributes = {
						id:"LA_flash",  
						name:"LA_flash"
				}
				swfobject.embedSWF(theImage, thePlaceholder, "600", "431", "9", false, flashvars, params, attributes);
		}
		function initPlayer(theFile, theWrapper, thePlaceholder, theImage, theTitle) { 
			if(0 || theFile==""){
				//gEId("videoblog").style.display="none";
			} else {
				//deletePlayer(theWrapper, thePlaceholder, 'player1'); 
				createPlayer(thePlaceholder, theImage);
			}
		}

