$(document).ready(function(){
	
	var cookieName = 'trc-disclaimer';
	var options = { path: '/', expires: 0 };

	if (location.href.indexOf('?reset') != -1){
		$.cookie(cookieName, null);
	}
	
	$('#enterSite').click(function(){
		$.cookie(cookieName, null);
		$.cookie(cookieName, cookieVal, options);
		
		if(location.href.indexOf('?oldLoc')==-1){
			location.replace('/Home.aspx');
		}
		else{
		//location.replace(location.href.substring(location.href.indexOf('oldLoc=')+7));
		$("a")[1].href = location.href.substring(location.href.indexOf('oldLoc=')+7);

}
	});
}); 
