if(typeof Flash=='undefined'){	var Flash=new Object();}
if(typeof Flash.url=='undefined'){	var url='';}
if(typeof Flash.id=='undefined'){	var id='';}
if(typeof Flash.width=='undefined'){	var width='';}
if(typeof Flash.height=='undefined'){	var height='';}
if(typeof Flash.bgcolor=='undefined'){	var bgcolor='';}
if(typeof Flash.wmode=='undefined'){	var wmode='';}

{
	Flash.FlashObject=function(_url, _id, _width, _height, _bgcolor, _wmode){
		if(!document.createElement||!document.getElementById){			return;		}
		this.url = _url;
		this.id = _id;
		this.width = _width;
		this.height = _height;
		this.bgcolor = _bgcolor;
		this.wmode = _wmode;	};

	Flash.FlashObject.prototype={		Mostrar:function(){
			document.write('<object id='+this.id+' classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0 width='+this.width+' height='+this.height+' align=center>\n');
			document.write('<param name=movie value='+this.url+'>\n');
			document.write('<param name=quality value=high>\n');
			document.write('<param name=allowScriptAccess value=always>\n');
			document.write('<param name=swLiveConnect value=true>\n');
		
			if (this.wmode != '') {
				document.write('<param name=wmode value='+this.wmode+'>\n');
			}
			if (this.bgcolor != '') {
				document.write('<param name=bgcolor VALUE='+this.bgcolor+'>');
			}
			document.write('<embed src='+this.url+' name='+this.id+' quality=high swLiveConnect=true allowScriptAccess=always pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash width='+this.width+' height='+this.height+' align=center');
		
			if (this.wmode != '') {
		
				document.write(' wmode='+this.wmode);
		
			}
		
			document.write('></embed>\n');
		
			document.write('</object>\n');
		}
	};

}var FlashObject=Flash.FlashObject;
