<!--
var timer;
timer=setTimeout("location.href ='index_redir'",15000); 

function stoper() {
	clearTimeout(timer);
}

function windowOpener(url,name,args) {
	if (typeof(popupWin) != "object") {
		popupWin = window.open(url,name,args);
	} else {
		if (!popupWin.closed) { 
			popupWin.location.href = url;
		} else {
			popupWin = window.open(url,name,args);
		}
	}
	popupWin.focus();
	popupWin.location.href = url;
}
//-->
