
// FLASH/JS INTERFACE

function thisMovie(movieName) { 
	if (navigator.appName.indexOf("Microsoft") != -1) { 
		return window[movieName] 
	} else { 
		return document[movieName] 
	} 
}

function ViewClip(_FLVREF,_FLVPIC,_FLVNAME,_FLVID,_TRACKER,_AUTOPLAY) {
	var OBJ = new Object();
	_FLVREF != null ? OBJ.FLV_REF = _FLVREF : null;
	_FLVPIC != null ? OBJ.FLV_PIC = _FLVPIC : null;
	_FLVNAME != null ? OBJ.FLV_NAME = _FLVNAME : null;
	_FLVID != null ? OBJ.FLV_ID = _FLVID : null;
	_TRACKER  != null ? OBJ.FLV_TRACKER = _TRACKER : null;
	_AUTOPLAY != null ? _AUTOPLAY == true ? OBJ.AutoPlay = true : OBJ.AutoPlay = false : OBJ.AutoPlay = false;

	thisMovie("FTR_Video").PlayClip(OBJ);
}