function MyOwnFlashObject(src, width, height, bgcolor, vars)
{
	document.writeln('<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"');
 	document.writeln(' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
 	document.writeln(' WIDTH="'+width+'" HEIGHT="'+height+'" id="index">');
 	document.writeln(' <PARAM NAME=movie VALUE="'+src+'">');
	document.writeln('<PARAM NAME="menu" VALUE="0">');
 	document.writeln('<PARAM NAME="quality" VALUE="High">');
 	document.writeln('<PARAM NAME=bgcolor VALUE='+bgcolor+'>');
	document.writeln('<PARAM NAME="FLASHVARS" VALUE="'+vars+'">');
  	document.writeln('<EMBED src="'+src+'" quality="high"');
	document.writeln(' type="application/x-shockwave-flash"');
 	document.writeln(' bgcolor='+bgcolor+'');
 	document.writeln(' menu="false"');
	document.writeln(' flashvars='+vars+'');
 	document.writeln(' width='+width+' height='+height+'');
	document.writeln(' pluginspage="http://www.macromedia.com/go/getflashplayer"');
	document.writeln(' wmode="opaque"');
	document.writeln('/>');
    document.writeln('</OBJECT>');


}
