// JavaScript Document

exit = true;

function email_list() 
{
	var allcookies = document.cookie;
	var pos = allcookies.indexOf("SiteList=");
	if (pos != -1) { exit = false; }
	if (exit) {
		var nextyear = new Date();
		nextyear.setFullYear(nextyear.getFullYear() + 1);
		document.cookie = "SiteList=1;path=/;expires=" + nextyear.toGMTString();
		RemoteWindow = window.open();
		RemoteWindow.focus();
	}
}
