function flash(url,width,height)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+width+'" height="'+height+'">\n');
	document.write('<param name="movie" value="'+url+'" />\n');
	document.write('<param name="quality" value="high" />\n');
	document.write('<embed src="'+url+'" quality="high" width="'+width+'" height="'+height+'" type="application/x-shockwave-flash">\n');
	document.write('</embed>\n'); 
	document.write('</object>\n');
}
