
function print_time_top(offset, number, in_blank) {
if (document.layers) {
showtime(offset);
}
else {
if (no_winter_time != 0) {
showtime(offset + 1);
} else {
showtime(offset);
}
}
print_topnews(number, in_blank);
}
function showtime(offset) {
day = new Date();
mils = Date.UTC(day.getYear(), day.getMonth(), day.getDay(), day.getHours(), day.getMinutes(), day.getSeconds());
day.setTime(mils - offset * 3600000);
var hours = day.getHours();
var minutes = day.getMinutes();
var seconds = day.getSeconds();
var timevalue = '' + ((hours < 10)?"0":"") + hours;
timevalue += ((minutes < 10)?":0":":") + minutes;
timevalue += ((seconds < 10)?":0":":") + seconds;
document.timeform.time.value = timevalue;
id = setTimeout("showtime(" + offset + ")", 100);
}
function print_topnews(number, in_blank) {
if (in_blank) {
target = '_blank';
}
else {
target = '_top';
}
document.write("<b>РБК. Главные новости</b><br>");
	
mas = new Array('<a target=" + target + " href="http://top.rbc.ru/society/04/02/2012/636267.shtml"><B>03:59</B>&nbsp;В Каире продолжаются массовые беспорядки: более тысячи пострадавших</a><br>','<a target=" + target + " href="http://top.rbc.ru/society/04/02/2012/636268.shtml"><B>04:31</B>&nbsp;Дэниэл Рэдклифф признался, что снимался в "Гарри Поттере" пьяным</a><br>','<a target=" + target + " href="http://top.rbc.ru/society/04/02/2012/636265.shtml"><B>01:52</B>&nbsp;Глава Роскосмоса не хочет никого увольнять за провалы со спутниками</a><br>','<a target=" + target + " href="http://top.rbc.ru/economics/04/02/2012/636266.shtml"><B>03:13</B>&nbsp;Цены на нефть резко подскочили на статистике из США</a><br>','<a target=" + target + " href="http://top.rbc.ru/politics/04/02/2012/636264.shtml"><B>01:24</B>&nbsp;Власти Судана готовы к войне с Южным Суданом</a><br>','<a target=" + target + " href="http://top.rbc.ru/politics/03/02/2012/636262.shtml"><B>22:59</B>&nbsp;ЦИК отклонил 90 процентов жалоб о нарушениях на выборах в Госдуму</a><br>','<a target=" + target + " href="http://top.rbc.ru/society/04/02/2012/636263.shtml"><B>00:16</B>&nbsp;Полотно П.Сезанна стало самым дорогим произведением искусства в истории</a><br>','<a target=" + target + " href="http://top.rbc.ru/politics/03/02/2012/636210.shtml"><B>16:44</B>&nbsp;Шествие "За честные выборы": что? где? когда?</a><br>','<a target=" + target + " href="http://top.rbc.ru/politics/03/02/2012/636257.shtml"><B>20:56</B>&nbsp;МИД: Россия не пойдет на сделку с США по Ирану и Сирии</a><br>','<a target=" + target + " href="http://top.rbc.ru/incidents/03/02/2012/636259.shtml"><B>21:36</B>&nbsp;У главного банкира Дагестана украли $320 тыс. в центре Москвы</a><br>','<a target=" + target + " href="http://top.rbc.ru/society/03/02/2012/636255.shtml"><B>20:22</B>&nbsp;ВЦИОМ: Административные рычаги - ловушка для В.Путина</a><br>','<a target=" + target + " href="http://top.rbc.ru/society/03/02/2012/636246.shtml"><B>19:17</B>&nbsp;Начал работу сайт по мониторингу выборов президента</a><br>','<a target=" + target + " href="http://top.rbc.ru/society/03/02/2012/636232.shtml"><B>18:23</B>&nbsp;Центр Москвы перекроют в связи с митингом 4 февраля</a><br>');
for (i = 0; i < number; i++) {
document.write(mas[i]);
}
document.write("</form>");
}
	
