function getObj(name)
{    
  if (document.getElementById)
  {
  	return document.getElementById(name);
	//this.style = document.getElementById(name).style;
  }
  else if (document.all)
  {
	return document.all[name];
	//this.style = document.all[name].style;
  }
  else if (document.layers)
  {
   	return document.layers[name];   	
   	//this.style = document.layers[name];
  }
} 
// external_script.js
function CreateControl(DivID, URL, WIDTH, HEIGHT)
{
    var d = getObj(DivID);
    d.innerHTML = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="'+ WIDTH + '" height="'+ HEIGHT + '">'+
        '<param name="movie" value="' + URL + '">'+
        '<param name="quality" value="high">'+
        '<param name="wmode" value="transparent">'+
        '<embed src="' + URL + '" width="' + WIDTH + '" height="' + HEIGHT + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent"></embed>'+ '</object>';

}