///////////
// flv  //
/////////
function setSize(sId,iWidth,iHeight) {
	mObj = document.getElementById(sId);
	if (mObj!=null) {
		mObj.style.width = iWidth+"px";
		mObj.style.height = iHeight+"px";
		mEmb = mObj.getElementsByTagName("embed")[0];
		if (mEmb!=null) {
			mEmb.style.width = iWidth+"px";
			mEmb.style.height = iHeight+"px";
		}
	}
}
function addFlv(url,size,loop,autoplay) {
	loop = loop==null?false:loop==1;
	autoplay = autoplay==null?false:autoplay==1;
	aPth = url.split("/");
	sFle = aPth[aPth.length-1];
	sNme = sFle.split(".")[0];
	sSrc = '/style/flashvideoplayer.swf?id='+sNme+'&size='+size+'&loop='+loop+'&autoplay='+autoplay+'&url='+url;
	var fo = new FlashObject(sSrc, sNme, "320", "240", "8.0.0", "#000000", true, "high");
	fo.write("trailer");
}

function resize(sId) {
	mObj = document.getElementById(sId);
	mEmb = mObj.getElementsByTagName("embed")[0];
	if (mEmb!=null) mEmb.resize();
	else mObj.resize();
}