setTimeout ("changePage()", 1000);

function changePage() {
	if (self.parent.frames.length == 0)
		document.location = "http://www.evilernie.net/"
	}


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)
    {
  	var endstr = document.cookie.indexOf (";", j);
 	 if (endstr == -1)
		 endstr = document.cookie.length;
	 return unescape(document.cookie.substring(j, endstr));
    }	
    i = document.cookie.indexOf(" ", i) + 1;
    if (i == 0) break; 
  }
  	return null;
}

	var windowtype = 0; 
	if(GetCookie('input') != null) windowtype=GetCookie('input');

	if (windowtype == 0) document.write("<base target=main>")
	if (windowtype == 1) document.write("<base target=_blank>")
	if (windowtype == 2) document.write("<base target=_top>")
