﻿// This page opens a cookie then adds the email address to a hidden field


function cncVal()
{
	var em
	em = getCookieValue("emcookie");
	
	document.cncques.email.value = em;

				
}


function getCookieValue(s) {

var result = null;
var myCookie = " " + document.cookie + ";";
var searchS = " " + s + "=";
var startOfCookie = myCookie.indexOf(searchS);
var endOfCookie;
if(startOfCookie != -1) {
startOfCookie += searchS.length; //skip past cookie s.
endOfCookie = myCookie.indexOf(";", startOfCookie);
result = unescape(myCookie.substring(startOfCookie, endOfCookie));

}

return result;

}
