function embedVideo(href,divid,width,height,browser)
{
// create the element
var embed = document.createElement( "EMBED" );
// set its attributes.
embed.setAttribute( "allowFullScreen", "false" );
embed.setAttribute( "data", href );
embed.setAttribute( "src", href);
embed.setAttribute( "width", width );
embed.setAttribute( "height", height );
embed.setAttribute( "autostart", 1 );
embed.setAttribute( "controller", 1 );
embed.setAttribute('bgcolor','#000000');
if(browser=="MSIE")
{
embed.setAttribute( "codebase", "http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715");
embed.setAttribute( "standy", "Loading Windows Media Player components..." );
embed.setAttribute( "type", "application/x-oleobject" );
embed.setAttribute("FileName",href);
embed.setAttribute("id","MediaPlayer");
embed.setAttribute("classid","CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95");
}
else
{
embed.setAttribute( "type", "video/x-ms-wmv" );
}

var flash_box = document.getElementById( divid );
flash_box.appendChild( embed );
}

