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(getType , s ,w , h , t ) 
	{
		if ( getType == "flash") 
		{
			clsid = "D27CDB6E-AE6D-11CF-96B8-444553540000";
			codebase = "http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"; 
			pluginspage = "http://www.macromedia.com/go/getflashplayer"; 
			embedType = "application/x-shockwave-flash"; 
		}

		parameter += "<param name='movie' value='"+ s + "'>\n";
		parameter += "<param name='quality' value='high'>\n";
	
		if(t == "1")
		{
			parameter += "<param name='wmode' value='transparent'>\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(picID) 
	{
		if (clsid) 
		{
			obj = "<object classid=\"clsid:"+ clsid +"\" codebase=\""+ codebase +"\" width='"+ width +"' height='"+ height +"'>\n";
		}

		embed = "<embed src='" + src + "' pluginspage='"+ pluginspage + "' type='"+ embedType + "' width='"+ width + "' height='"+ height +"'"+ allParameter +" ></embed>\n";

		if (obj) 
		{
			embed += "</object>\n"; 
		}

		html = obj + parameter + embed;

    var rb_fver = "8";
    var rb_flash = 0;
    if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] ) 
    {
      var plugin = navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin;
      if (plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= rb_fver)
        rb_flash = 1;
    }
    else if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) 
    {
      rb_flash = 1;
    }
    if (rb_flash) 
    {
      document.write(html);
    } 
    else 
    {
      document.write('<img src="siteimages/'+picID+'" width="'+width+'" height="'+height+'" border="0" alt="" />');
    }
	}
}
