function initPlayer(theFile, theWrapper, thePlaceholder, theImage, theTitle, url) { 
	var s1 = new SWFObject("/images/player.swf","ply","153","117","9","#FFFFFF");
	s1.addParam("allowfullscreen","true");
	s1.addParam("allowscriptaccess","always");
//	alert("asdasdfasdf");
//	alert("file="+theFile+"&image="+theImage);
	s1.addParam("flashvars","file="+theFile+"&image="+theImage+"&controlbar=none&autostart=true&repeat=none&displayclick=link&link="+url+"&linktarget=_self");
	s1.write(thePlaceholder);
}
function delPlayer(id,str) { 
//alert(str);
	var hEls = document.getElementById(id);
	hEls.innerHTML = str;
}

