


function showGiftPicture(artist, stem, ext) {
	var picture = 'gift/' + stem + '.' + ext;
	var thumbnail = 'gift/' + stem + '_thumb.jpg';
	d.w(
		TR(
'<td class="t1" colspan="2" rowspan="2" align="center">' +
'<a href="' + picture + '">' +
'<img alt="[thumb]" border="0" src="' + thumbnail + '" /></a></td>' +
'<th class="t1" colspan="8"><big>' + artist + '</big></th>'
		) +
		TR(
'<th class="t2" colspan="2"><big>Modified</big></th>' +
'<td class="t3" colspan="2" align="center">' + toDateString(fileLastModified(picture)) + '</td>' +
'<th class="t2" colspan="2"><big>Length</big></th>' +
'<td class="t3" colspan="2" align="center">' + fileLength(picture) + '</td>'
		)
	);
}

giftLastModified = maxList([
	fileLastModified("gift/from_kurisu.png"),
	fileLastModified("gift/from_seno.png"),
	fileLastModified("gift/from_sippo.png"),
	fileLastModified("gift/from_seno2.jpg"),
	fileLastModified("gift/from_da2p.jpg"),
	fileLastModified("gift/from_yuukiabe.gif"),
	fileLastModified("gift/from_kensuke.png"),
	fileLastModified("gift/from_ultrawolf.jpg")
]);



