﻿function ShowVideo(url)
{
    document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="800" height="585"');
    document.write('codebase="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0">');
    document.write('<param name="movie" value="' + url + '">');
    document.write('<param name="play" value="true">');
    document.write('<param name="loop" value="false">');
    document.write('<param name="quality" value="low">');
    document.write('<embed src="' + url + '" width="800" height="585" quality="low" loop="false" type="application/x-shockwave-flash"');
    document.write('pluginspage="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
    document.write('</embed>');
    document.write('</object>');

}

