function iemov( WIDTH, HEIGHT, URL)
{
document.write('<object classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6" width="' + WIDTH + '" height="' + HEIGHT + '">');
document.write('<param name="URL" value="' + URL + '">');
document.write('<param name="autoStart" value="true">');
document.write('<PARAM NAME="invokeurls" VALUE="true">');
document.write('<PARAM NAME="stretchToFit" VALUE="true">');
document.write('<PARAM name="uiMode" value="mini">');
document.write('<PARAM name="PlayCount" value="9999">');
document.write('<param name="background-color" value="white">');
document.write('<param name="ShowStatusBar" value="0"></object>');

}
function ffmov( WIDTH, HEIGHT, URL)
{
document.write('<object data="' + URL + '" type="video/x-ms" width="' + WIDTH + '" height="' + HEIGHT + '">');
document.write('<param name="src" value="' + URL + '">');
document.write('<PARAM name="uiMode" value="full">');
document.write('<PARAM name="PlayCount" value="9999">');
document.write('<PARAM name="Repeat" value="1"><param name="ShowStatusBar" value="1">');
document.write('<param name="autoStart" value="true"></object>');

}
function wmvmov( WIDTH, HEIGHT, URL)
{
document.write('<embed src="' + URL + '" type="video/x-ms" width="' + WIDTH + '" height="' + HEIGHT + '"></embed>');


}