	function calctime(time){
		var d=new Date();
		var now=d.getTime()/1000;
		now=Math.round(now);
		var diff=Math.round((now-time)/60);
		
		if (diff<=1){
			document.write("1 минута");
		}else if (diff>1 && diff<60){
			document.write(diff+" минути");
			}else{
				document.write("&gt;1 час");
		}
		
	}
	
	
	function setthumb(path){
		
		document.write('<img style="padding-top: 2px;" src="'+path+'" width="104" height="78" class="img_left2" alt="" title="" border="0" />');
	}
