// Copyright (c)2008,2009 Bleacher Computer Services
// All Rights Reserved
if (document.cookie.indexOf("TellFriend") == -1) { setTimeout("DispMsg();", 25000); }
function DispMsg() {
	var rightnow = new Date();
	var future = new Date(rightnow.getTime() + (60000 * 60 * 24 * 25));
	document.cookie = "TellFriend=1; path=/; domain=.searchnc.com; expires=" + future.toGMTString();
	var msg = "Would you like to email a friend about this web site?";
	var body = "Check out this web site!";
	if (document.cookie.indexOf("HP=") != -1) {
		if (confirm(msg)) {
			var here = location.href;
			window.navigate("mailto:?subject="+escape(document.title)+"&body=%0d%0a"+escape(body)+"%0d%0a%0d%0a"+here);
			document.cookie = "TellFriend=2; path=/; domain=.searchnc.com; expires=" + future.toGMTString();
		}
	}
}

