/*--
  IE ÆÐÄ¡¿¡ µû¸¥... script

  ======================= 
    »ç¿ë¿¹ 

setEmbed
    <script  type="text/javascript"> 
    setem = new setEmbed(); 
    setem.init('flash','/fla/main_menu.swf','100%'); 
    setem.embedStyle('BORDER-RIGHT: #cccccc 0px solid;'); 
    setem.parameter('wmode','transparent'); 
    setem.parameter('FlashVars','main=<%=str_main%>'); 
    setem.show(); 
    </script> 

setFlash
    <script type="text/javascript">setFlash('/swf/flash.swf', 400, 180);</script>
--*/

/*
function setFlash(path, width, height){
    document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0' width='" + width + "' height='"+ height +"'>");
    document.write("<param name='movie' value='" + path + "'>");
    document.write("<param name='quality' value='high'>");
    document.write("<param name='wmode' value='transparent'> ");
    document.write("<embed src='" + path + "' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='" + width + "' height='"+ height +"'></embed> ");
    document.write("</object>");
}
*/
function setFlash(path, width, height){
    document.write("<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='" + width + "' height='"+ height +"'>");
    document.write("<param name='movie' value='" + path + "'>");
    document.write("<param name='quality' value='high'>");
    document.write("<param name='wmode' value='transparent'> ");
    document.write("<embed src='" + path + "' quality='high' type='application/x-shockwave-flash' width='" + width + "' height='"+ height +"'></embed> ");
    document.write("</object>");
}

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 embedStyle = new String; 
  var src = new String; 
  var width = new String; 
  var height = new String; 

    
  this.init = function( getType, s, w, h ) { 
      
      if (getType == "flash") 
      { 

        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"; 
      } 
      else if (getType == "audio") 
      { 
        pluginspage = "http://www.macromedia.com/go/getflashplayer"; 
        embedType = "audio/x-ms-wma"; 
      } 
      /* type Ãß°¡ 
      else if ( ) 
      { 
      } 
      */ 
            
      parameter += "<param name='movie' value='"+ s + "'>\n";  
      parameter += "<param name='quality' value='high'>\n";    
      
      src = s; 
      width = w; 
      height = h; 
  } 

  this.embedStyle = function( es ) { 
      embedStyle = es;
  } 
  
  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='"+ embedStyle +"' src='" + src + "' pluginspage='"+ pluginspage + "' type='"+ embedType + "' width='"+ width + "' height='"+ height +"'"+ allParameter +" ></embed>\n"; 
      
      if ( obj ) 
      { 
        embed += "</object>\n"; 
      } 
      
      html = obj + parameter + embed; 
      document.write( html );  
  } 
  
}
