/* --------------------------------------------------------
 * MMG-CRM - Developed for Life Goes On
 * Life Goes On CMS
 * Copyright (C) 2004-2006 MMG interactive
 *
 * MMG interactive versioning:
 * ---------------
 * $Revision: 11 $
 * $Author: michael $
 * $Date: 2008-04-08 14:27:51 +1000 (Tue, 08 Apr 2008) $
 *
 * Life Goes On versioning:
 * -------------------
 * $Tag1$
 * $Tag2$
 * $Tag3$
 * --------------------------------------------------------
 */
// 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) {
	alert('in view clip');
	var OBJ = new Object();
	_FLVREF != null ? OBJ.FLV_REF = _FLVREF : null;
	_FLVPIC != null ? OBJ.FLV_PIC = _FLVPIC : null;
	_FLVNAME != null ? OBJ.FLV_NAME = _FLVNAME : OBJ.FLV_NAME = " ";
	_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("FLV_Video").PlayClip(OBJ);
}