﻿// JScript File
           
SWFFormFix=function(swfname){}

Event.observe(window, 'load', GetSWFAnimGifList, false);
    
    
    function GetSWFAnimGifList()
    {                
        for(i=0;i<arrMicroUrls.length; i++)
        {                    
            GetSWFAnimGif(arrMicroUrls[i],"tdMicro_" + arrMicroUrls[i]);
        }
    }
    
    function GetSWFAnimGif(GifUrl,objID)
    {
        //var GifUrl = "http://test.aniboom.com/icons/MicroSMotion/AniGif663592.gif"; 
        var so_swfMicroSmotionPlayer = new SWFObject(fullAppPath + "/media/flash/gifPlayer.swf?gifURL="+ GifUrl +"&autoPlay=false", "Swf_Player", "160", "120", "9", "#000000");
		    so_swfMicroSmotionPlayer.addParam("quality", "high");
		    so_swfMicroSmotionPlayer.addParam("allowScale", "false");
		    so_swfMicroSmotionPlayer.addParam("pluginspage", "http://www.macromedia.com/go/getflashplayer");
		    so_swfMicroSmotionPlayer.addParam("wmode", "transparent");
		    so_swfMicroSmotionPlayer.addParam("align", "middle");       
            so_swfMicroSmotionPlayer.addParam("scale", "noscale");                       
            so_swfMicroSmotionPlayer.write(document.getElementById(objID));
    }