function setEmbed() 
{ 
  var obj = new String; 
  var parameter = new String; 
  var embed = new String; 
  var html = new String; 
  var allParameter = new String; 
  var clsid = new String; 
  var codebase = new String; 
  var pluginspace = new String; 
  var embedType = new String; 
  var src = new String; 
  var width = new String; 
  var height = new String; 

    
  this.init = function( s ,w , h ) { 
      
      clsid = "D27CDB6E-AE6D-11cf-96B8-444553540000";        
      codebase = "http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"; 
      pluginspage = "http://www.macromedia.com/go/getflashplayer"; 
      embedType = "application/x-shockwave-flash";
      autostart="false";
      loop="0" ;
      controls="ImageWindow,ControlPanel,StatusBar";
      controls="ImageWindow,ControlPanel,StatusBar"

 
            
      parameter += "<param name='movie' value='"+ s + "'>\n";  
      parameter += "<param name='quality' value='high'>\n";    
      
      src = s; 
      width = w; 
      height = h; 
  } 
  
  this.parameter = function( parm , value ) {      
      parameter += "<param name='"+parm +"' value='"+ value + "'>\n";        
      allParameter += " "+parm + "='"+ value+"'"; 
  }  
  
  this.show = function() { 
      if ( clsid ) 
      { 
        obj = "<object classid=\"clsid:"+ clsid +"\" codebase=\""+ codebase +"\" width='"+ width +"' height='"+ height +"'>\n"; 
      } 
      
      embed = "<embed  style='filter:gray();' src='/mediaplayer/flvplayer.swf?file=/userfiles/video/Umile_LEEEUNMI.flv&&location=" + src + "&autostart=1&showfsbutton=true' pluginspage='"+ pluginspage + "' type='"+ embedType + "' width='"+ width + "' height='"+ height +"'"+ allParameter +" autostart='false' loop=0 allowscriptaccess='always'  ></embed>\n"; 
      
      if ( obj ) 
      { 
        embed += "</object>\n"; 
      } 
      
      html = obj + parameter + embed; 
      
      document.write( html );  
  } 
  
}


function setEmbed_2() 
{ 
  var embed = new String; 
      
  this.show = function(artist) { 
      
      embed = "<object width='420' height='355'><param name='movie' value='/userfiles/video/"+artist+".wmv'></param><param name='allowFullScreen' value='true'></param><param name='allowscriptaccess' value='always'></param><embed src='/userfiles/video/"+artist+".wmv' type='application/x-shockwave-flash' allowscriptaccess='always' allowfullscreen='true' width='420' height='355'></embed></object>\n";             
      document.write( embed );  
  } 
  
}