var TAKEOVER_URL = '/takeover_home.html';
var TAKEOVER_NAME = 'takeover_newsite';
var TAKEOVER_LIFE = 0; // 0:this session, >0:days

/* http://www.quirksmode.org/js/cookies.html */
function createCookie(a,b,c){if(c){var d=new Date();d.setTime(d.getTime()+(c*24*60*60*1000));var e="; expires="+d.toGMTString();}else var e="";document.cookie=a+"="+b+e+"; path=/";}
function readCookie(a){var b=a+"=";var d=document.cookie.split(';');for(var i=0;i<d.length;i++){var c=d[i];while(c.charAt(0)==' ')c=c.substring(1,c.length);if(c.indexOf(b)==0)return c.substring(b.length,c.length);}return null;}
function eraseCookie(a){createCookie(a,"",-1);}

if (readCookie(TAKEOVER_NAME)==null) {
    createCookie(TAKEOVER_NAME,TAKEOVER_URL,TAKEOVER_LIFE);
    document.location = TAKEOVER_URL;
}

