<!--
function setByPass (site, perm) {

	base = "http://www.aol.com/host_bypass.html?"
	if(perm){
		var date = new Date();
		date.setDate(date.getDate()+perm);
		document.cookie = "byPass=1;"+"expires="+date.toGMTString()+"; domain=.aol.com; path=/;";
	}
	else{
		document.cookie ="byPass=1; expires=Thu, path=/;";
	}
	window.location.href = base+"portal="+site+"&site_perm="+perm;
}

//-->