		var allcookies = document.cookie;
		var pos = allcookies.indexOf("page=");
			if (pos != -1) {
				var start = pos + 5;
				var end = allcookies.indexOf(";", start);
				if (end == -1) end = allcookies.length;
				var value = allcookies.substring(start, end);
				value = unescape(value);
				var x = parseInt(value);
				x = x + 1;
				value = x+="";
				document.cookie = "page=" + escape(value);
				}

	function goBack() {
			var y = 0 - x;
			history.go(y);
			document.cookie = "version=" + escape(1);
				
	}
	
	function getAddress(a,b,c,d){
							e = "subscriberaddress.html?^" + escape(a) + "^" + escape(b) + "^" + escape(c) + "^" + escape(d);
							window.open (e,'addform','width=700,height=400,scrollbars=yes,menubar=no,resizable=yes');
	}
	