function ShowMovie(clipName,ctrlID,kwds)
{
   sec = (new Date()).getSeconds();
   var movName=clipName+".mov";
   if (document.fmtform.CurClip.value!='')
   {
   	var cmval;
   	cmval=document.fmtform.CurClip.value.split(",");
   	showImg(cmval[0],cmval[1],kwds);
   	hide('cmov');
   }
   document.fmtform.CurClip.value=clipName+','+ctrlID;
   document.getElementById(ctrlID).innerHTML="";
   document.getElementById(ctrlID).innerHTML='<div id="cmov"><object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"'+' codebase="http://www.apple.com/qtactivex/qtplugin.cab" width="128" height="85" id="movobj">' + '<param name="src" value="'+ movName +'?t='+ sec +'">' + '<param name="autoplay" value="true">'+'<param name="enablejavascript" value="true">'+'<param name="loop" value="true">'+'<param name="bgcolor" value="#000033">'+'<embed width="128" height="85" enablejavascript="true" name="movobj"' + ' src="'+ movName +'?t='+ sec +'" kioskmode="true" loop="true" bgcolor="#000033"  pluginspage="http://www.apple.com/quicktime/download/">' + '</embed></object></div>';
   document.getElementById('cmov').style.visibility='visible';
}

function showImg(clipName,ctrlID,kwds)
{
	var imgName=clipName+".JPG";
	if (document.getElementById && document.getElementById(ctrlID) != null)
	{
   	document.getElementById(ctrlID).innerHTML="<a href='#FMTA' onClick=\"javascript:ShowMovie('"+clipName+"','"+ctrlID+"');\"><img src='"+imgName+"' width='128' height='85' border='0' ALT='"+kwds+"'></a>";
   }
}

function hide(object)
{
	if (document.getElementById && document.getElementById(object) != null)
	{
		 document.getElementById(object).style.visibility='hidden';
		 document.getElementById(object).style.display='none';
		 document.getElementById(object).innerHTML = "";
	}
}
	
