//////////////////////////////////////////////////////////////////////
//															
//                              
//                         capture.js
//
//  javascript code used in conjunction with the email capture  
//   ONLY EDIT THE ONE LINE OF CODE BETWEEN THE EDIT COMMENTS BELOW
//
//////////////////////////////////////////////////////////////////////

function setCookie(name, value, expire)
{document.cookie = name + "=" + escape(value) + ((expire == null) ? "" : ("; expires=" + expire.toGMTString()))}

function getCookie(Name)
{var search = Name + "=";if (document.cookie.length > 0)
{offset = document.cookie.indexOf(search);
if (offset != -1) {offset += search.length;end = document.cookie.indexOf(";",offset);
if (end == -1)
end = document.cookie.length;return unescape(document.cookie.substring(offset, end))
		}
	}
}

function setBeenHere()
{ var Value="not_here";setCookie("not_here",Value,null);
	}

function DoIt()
{ if (navigator.appVersion.indexOf("AOL") == -1){var GetIt=getCookie("not_here");
	if(GetIt==null){
		if (confirm(
///////////////////////////////////////////////////////////////////
//////// EDIT THE NEXT LINE ONLY - EDIT THE NEXT LINE ONLY ////////
///////////////////////////////////////////////////////////////////
"Subscribe now to our free MyBizTactics newsletter and strategic coaching programme\n\n You will receive information \n covering all aspects of strategy and business development!\n\n Your address will never be sold\n You can unsubscribe any time\n "))
///////////////////////////////////////////////////////////////////
////// DO NOT EDIT ANY FURTHER - DO NOT EDIT ANY FURTHER //////////
///////////////////////////////////////////////////////////////////
{setBeenHere();
document.lightning.button.click();
} else
	{setBeenHere();
			}
		}
	}
}

function NukeIt()
{setCookie("capture",null,null);
	}

var counted=0;