function getURLParam(name) {
	var regexS = "[\\?&]"+name+"=([^&#]*)";
	var regex = new RegExp( regexS );
	var tmpURL = window.location.href;
	var results = regex.exec( tmpURL );
	if( results == null ) {
		return "";
	} else {
		return results[1];
	}
}

function setCookie(cookieName,cookieValue) { 
	document.cookie = cookieName+"="+escape(cookieValue);
}

function iDisagree() {
	window.location = 'http://www.precisiondrilling.com/';
}

function iAgree() {
	setCookie('irCookie','hasVisited=1');
	var thisPage = "InvestorCentre/";
	thisPage += getURLParam('url');
	window.location = thisPage;
}