<!-- Begin
function GetCookie (name) {  
var arg = name + "=";  
var alen = arg.length;  
var clen = document.cookie.length;  
var i = 0;
while (i < clen) {
var j = i + alen;    
if (document.cookie.substring(i, j) == arg)      
return getCookieVal (j);    
i = document.cookie.indexOf(" ", i) + 1;    
if (i == 0) break;   
}  
return null;
}
function getCookieVal(offset) {
var endstr = document.cookie.indexOf (";", offset);
if (endstr == -1)
endstr = document.cookie.length;
return unescape(document.cookie.substring(offset, endstr));
}
function SetCookie (name, value) {  
var argv = SetCookie.arguments;  
var argc = SetCookie.arguments.length;  
var expires = (argc > 2) ? argv[2] : null;  
if (expires==null) {
expires=new Date();
expires.setTime(expires.getTime() + 365*10*24*60*60*1000);
};
var path = (argc > 3) ? argv[3] : '/';  
var domain = (argc > 4) ? argv[4] : null;  
var secure = (argc > 5) ? argv[5] : false;  
document.cookie = name + "=" + escape (value) + 
((expires == null) ? "" : ("; expires=" + expires.toGMTString())) + 
((path == null) ? "" : ("; path=" + path)) +  
((domain == null) ? "" : ("; domain=" + domain)) +    
((secure == true) ? "; secure" : "");
}
function start() {
if (document.location.href.indexOf('clear')>=0) {
 SetCookie('redirect_to','');
}
var redirect_to=GetCookie('redirect_to');
//alert(redirect_to);
if (redirect_to==1) {
 window.location='http://talks.guns.ru';
} else { 
 if (redirect_to==2) {
  window.location='http://talks.guns.ru/forum_auction';
 } else {
 if (redirect_to==3) {
 window.location='http://talks.guns.ru/forum_contest';
}
}
}
}

