function last_video(lv,vb)
{
	var str = '<table height="132" cellpading="0" cellspacing="0" border="0"><tr>';
	for(var i=0; i < lv.length; i++)
	{
		str += '<td width="180"  valign="top">';
		
		str += '<table width="100%"  cellpading="0" cellspacing="0" border="0">';
		str += '<tr><td valign="top"><span class="new_date">'+lv[i].day+' '+lv[i].month+'</span></td></tr>';
		str += '<tr><td valign="top" height="68"><a href="/'+lv[i].alias+'/"><img src="'+vb+lv[i].cover+'" onmouseover="this.className=\'new_tab_act\'" onmouseout="this.className=\'new_tab_noact\'" class="new_tab_noact" /></a></td></tr>';
		str += '<tr><td valign="top"><div class="new_title" style="width:95%; overflow: hidden;">'+lv[i].title+'</div></td></tr>';
		str += '</table>';
		
		str += '</td>';
	}
	str += '</tr></table>';
	
	document.open();
	document.write(str);
	document.close();
}