function RunActiveX(DivID, Movie, Width, Height )
{
var divTag = document.getElementById(DivID); 
divTag.innerHTML = "<div><object><param name='URL' value = '" + Movie + "'><param name='width' value = '" + Width + "'><param name='height' value = '" + Height + "'><param name='wmode' value='transparent'><param name='autostart' value='-1'><embed src = '" + Movie + "' width ='" + Width + "' Height = '" + Height +" 'wmode ='transparent'></embed></object>"; 
}

