function CreateActiveXFlash(FlashPath, FlashStyle, Alink)
{
    document.write('<OBJECT id="objFlash" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
    document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" ');
    document.write('style="' + FlashStyle + '" viewastext>');
    document.write('<PARAM NAME="movie" VALUE="http://' + FlashPath + '" ref>');
    if (Alink != "")
    {    
    document.write('<PARAM NAME="flashvars" VALUE="alink1=' + escape(Alink) + '">');
    }
    document.write('<PARAM NAME="quality" VALUE="high">');
    document.write('<PARAM NAME="Menu" VALUE="0">');
    document.write('<PARAM NAME="Scale" VALUE="ExactFit">');
    document.write('<PARAM NAME="BGColor" VALUE="#495A74">');
    document.write('<PARAM NAME="wmode" VALUE="opaque">');
    document.write('<embed src="http://' + FlashPath + '" scale="ExactFit" quality="high" bgcolor="#495A74" ');
    document.write('type="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" ');
    document.write('style="' + FlashStyle + '"></embed>');
    document.write('</object>');
}

function ShowMovie(moviePath, Vsize, Hsize)
{
    var str = "";

    str += "<embed style=\"WIDTH: " + Hsize + "; HEIGHT: " + Vsize + "\" type=application/x-mplayer2 align=baseline ";
    str += "pluginspage=http://download.microsoft.com/download/winmediaplayer/nsplugin/6.4/WIN98/EN-US/wmpplugin.exe ";
    str += "src=" + moviePath + " AutoStart=\"true\">";

    document.write(str);
}

