<script src="http://2008.sina.com.tw/get_medal_list.html" language="JavaScript" type="text/javascript"></script>
<script language="javascript">
var str='<div class="medalmd_tl"><a href="/compete/medals.shtml"><img src="http://image.sina.com.tw/2008olympic/2008img/icon/more.gif" border="0" /></a></div>';
str+= '<div class="medalmd_bg">';
str+= '<table width="270" border="0" align="center" cellpadding="3" cellspacing="1" class="m_table">';
str+= '<tr>';
str+= '<th >名次</th>';
str+= '<th >國家/地區</th>';
str+= '<th>金</th>';
str+= '<th>銀</th>';
str+= '<th>銅</th>';
str+= '</tr>';
for(var i = 0; i < 5; i ++)
{
str+= '<tr>';
str+= '<td class="m_billboard">'+ medals[i].rank +'</td>';
str+= '<td class="m_blue"><img src="http://image.sina.com.tw/2008olympic/2008img/flag/logo_'+ medals[i].short +'.gif" width="20" height="13" align="absmiddle" /> '+ medals[i].country +'</td>';
str+= '<td class="m_gray">'+ medals[i].gold +'</td>';
str+= '<td class="m_gray">'+ medals[i].silver +'</td>';
str+= '<td class="m_gray">'+ medals[i].bronze +'</td>';
str+= '</tr>';
}
str+='</table>';
str+='</div>';
document.write(str);
</script>