// JavaScript Document

function flashVer6Object(width,height,src,id,bg,img,img_title) {

	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"');
	document.write('WIDTH="' + width + '" HEIGHT="' + height + '" id="' + id + '" ALIGN="">');
	document.write('<PARAM NAME=movie VALUE="' + src + '"> ');
	document.write('<PARAM NAME=quality VALUE=high> ');
	document.write('<PARAM NAME=bgcolor VALUE=' + bg + '>');
	document.write('<EMBED src="' + src + '" quality=high ');
	document.write('bgcolor=' + bg + '  WIDTH="' + width + '" HEIGHT="' + height + '" NAME="' + id + '"');
	document.write('ALIGN="" TYPE="application/x-shockwave-flash"');
	document.write('PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"></EMBED>');
	if (img!=null) {
		document.write('<noembed><img src="' + img + '" alt="' + img_title + '"></noembed>');		
	}
	document.write('</OBJECT>');
}