function insertFlash(ih, parent)
{
 if(document.all){
 if(document.all[parent] !=null)
 document.all[parent].innerHTML=ih;
 }
  else{
 document.getElementById(parent).innerHTML=ih; }
 }

    function getflash(height, width, src)
    {
      var ih='';
      ih+='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="' + document.location.protocol + '//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" id="flash_banner" height="' + height + '"  width="' + width + '">';
      ih+='<param name="Movie" value="'+ src + '" />';
      ih+='<param name="Src"  value="'+ src + '" />';
      ih+='<param name="WMode" value="Transparent" />';
      ih+='<param name="Quality" value="High" />';
      ih+='<embed src="'+ src + '" quality="high" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" height="' + height + '"  width="' + width + '">';
      ih+='</object>';      
      return ih;
    }