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)
{
    document.write('<object id="WMPlay" width=' + Hsize + ' height=' + Vsize + ' classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" ');
    document.write('codebase ="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" ');
    document.write('standby="טוען את רכיב הצגת הסרט..." type="application/x-oleobject"> ');
    document.write('<PARAM NAME="FileName" VALUE="http://' + moviePath + '"> ');
    document.write('<PARAM NAME="EnableFullScreenControls" VALUE="1"> ');
    document.write('<PARAM NAME="DisplaySize" VALUE="1"> ');
    document.write('<PARAM NAME="ShowControls" VALUE="1"> ');
    document.write('<PARAM NAME="wmode" VALUE="opaque"> ');
    document.write('<PARAM NAME="ShowStatusBar" VALUE="1"> ');
    document.write('</object> ');
}
