function CreateControl(DivID, HEIGHT, SRC, TYPE, WIDTH, PLAY)
{
  var d = document.getElementById(DivID);
  d.innerHTML =     '<EMBED   height=' +HEIGHT+' src=' +SRC + ' type='+TYPE+' width='+WIDTH+' play='+PLAY+' wmode="Transparent"></EMBED> ';    
}


