// (с) Pavel Kuznetsov, 2005
//<meta http-equiv="Content-Type" content="text/javascript; charset=windows-1251">
var D = document;
var NL;
var Timeout = 15;
var Repeater;
var NewLocation = 'lastjedioutpost.ru';
function NewLink() {
	var param = location.search;
	var page = location.pathname;
	return('http://' + NewLocation + page + param);
}
NL = NewLink();
function StrikeLine() { return('<tr><td height=1 bgcolor=#808080></td></tr>'); }
function SetCounter() { return('<tr align=center valign=bottom><td height=18><a href="http://top.mail.ru/jump?from=398132"><img src="http://top.list.ru/counter?id=398132;t=82;r=' + escape(D.referrer) + '" border=0 height=18 width=88 alt="Рейтинг@Mail.ru"></a></td></tr>'); }
function StrikeCounter() { return(StrikeLine() + SetCounter()); }
function Countdown() {
	if (Timeout == 0) {
		ProgressBar.innerHTML = ''
		clearInterval(Repeater);
		location.assign(NL);
	} else {
		var PB = "<table width=0 height=10 border=0 cellspacing=3 cellpadding=0><tr>";
		for (i = 1; i <= Timeout; i++) {
			PB += '<td width=10 bgcolor=#88AAAA></td>';
		}
		ProgressBar.innerHTML = PB + '</tr></table>';
		Timeout--;
	}
}
function Waiting() {
	Repeater = setInterval("Countdown()", 1000);
}
function LoadBody() { D.write('<table width=100% height=100% border=0 cellspacing=0 cellpadding=0><tr><td align=center valign=center><table width=100% border=0 cellspacing=0 cellpadding=0><tr align=center><td><table width=800 border=0 cellspacing=0 cellpadding=20><tr align=left><td><font size=+2><b>Внимание!</b></font><br>Сайт был перемещен на новый сервер:<br><font size=+2><b><a href="http://' + NewLocation + '">' + NewLocation + '</a></b></font><br>Обновите Ваши ссылки!<br><br><font size=-1>Через несколько секунд вы будете автоматически перенаправлены на новый адрес.<br>Если Вы не хотите ждать, кликните на эту ссылку:<br><a href="' + NL + '">' + NL + '</a></font></td></tr></table></td></tr>' + StrikeLine() + '<tr align=center><td><table width=900 height=100 border=0 cellspacing=0 cellpadding=0 background="http://lastjedioutpost.ru/files/Redirection.jpg"><tr><td align=center valign=bottom><span id="ProgressBar"></span></td></tr></table></td></tr>' + StrikeLine() + '<tr align=center><td><table width=800 border=0 cellspacing=0 cellpadding=20><tr align=right><td><font size=+2><b>Attention!</b></font><br>The site has been moved to a new server:<br><font size=+2><b><a href="http://' + NewLocation + '">' + NewLocation + '</a></b></font><br>Update your references!<br><br><font size=-1>In some seconds you will be automatically redirected to the new address.<br>If you do not wish to wait, click on this hyperlink:<br><a href="' + NL + '">' + NL + '</a></font></td></tr></table></td></tr></table></td></tr>' + StrikeCounter() + '</table>'); }