function rankingLoad(URL,width,height) {
  document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" WIDTH="' + width + '" HEIGHT="' + height + '">');
  document.write('<PARAM NAME="movie" VALUE="' + URL + '" />');
  document.write('<PARAM NAME="quality" VALUE="high" />');
  document.write('<EMBED SRC="' + URL + '" QUALITY="high" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer" TYPE="application/x-shockwave-flash" WIDTH="' + width + '" HEIGHT="' + height + '">\n');
  document.write('</EMBED>');
  document.write('</OBJECT>');
}