﻿// JScript File


function stopAni()
{
    var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
   var fullScreenFlashObj = isInternetExplorer ? document.all.animation_ : document.animation_;
   

  fullScreenFlashObj.StopPlay();
}



function startFlash(id, movie, width, height)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" id="' + id + '" width="' + width +'" height="' + height + '" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="' + movie + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="wmode" value="transparent" />');

	//document.write('<param name="bgcolor" value="' + bgcolor + '" />');
	document.write('<embed src="' + movie + '"  wmode="transparent"  quality="high"  width="' + width +'" height="' + height + '" swLiveConnect=true id="' + id + '" name="' + id + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');//bgcolor="' + bgcolor + '" 
	document.write('</object>');
}


function runFlashMovie(id, movie, width, height)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" id="' + id + '" width="' + width +'" height="' + height + '" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="' + movie + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="wmode" value="transparent" />');
	document.write('<param name="loop" value="false" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<embed src="' + movie + '" FlashVars="&region=0"  wmode="transparent"   quality="high" bgcolor="#ffffff" loop="false"  width="' + width +'" height="' + height + '" swLiveConnect=true id="' + id + '" name="' + id + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}



function runFullAnimation(filename)
{
	document.write('<object style="z-index:0"  classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%" align="middle">');
  	document.write('<param name="movie" value="'+ filename+'">');
	document.write('<param name=quality value=high>');
 	document.write('<embed src="'+ filename+'" width="100%" style="z-index:0"  height="100%" align="middle"  quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" ></embed>');
	document.write('</object>');
}


function insertChartWithData( id, movie, width, height, dataXml)
{
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" id="' + id + '" width="' + width +'" height="' + height + '" align="middle">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<PARAM NAME="FlashVars" VALUE="&dataXML=' + dataXml + '">');
	document.write('<param name="movie" value="' + movie + '" />');
	document.write('<param name="quality" value="high" />');
	document.write('<param name="bgcolor" value="#ffffff" />');
	document.write('<embed src="' + movie + '" FlashVars="&dataXML=' + dataXml + '"  quality="high" bgcolor="#ffffff"  width="' + width +'" height="' + height + '" swLiveConnect=true id="' + id + '" name="' + id + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
	document.write('</object>');
}




function runFullAnimation(filename)
{
	document.write('<object style="z-index:0"  classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="100%" height="100%" align="middle">');
  	document.write('<param name="movie" value="'+ filename+'">');
	document.write('<param name=quality value=high>');
 	document.write('<embed src="'+ filename+'" width="100%" style="z-index:0"  height="100%" align="middle"  quality=high pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" ></embed>');
	document.write('</object>');
}


function runFullAnimation1(fileName)
{
    startFlash("fullScreenFlash", fileName, "100%", "100%");
}



