function get_cookie(Name) {
  var search = Name + "="
  var returnvalue = "";
  if (document.cookie.length > 0) {
    offset = document.cookie.indexOf(search)
    if (offset != -1) { // if cookie exists
      offset += search.length
      // set index of beginning of value
      end = document.cookie.indexOf(";", offset);
      // set index of end of cookie value
      if (end == -1)
         end = document.cookie.length;
      returnvalue=unescape(document.cookie.substring(offset, end))
      }
   }
  return returnvalue;
}
function confirmOpen(page)
{
if (get_cookie('lions' + page)==''){
 if ( confirm("Please be advised that the Lions Club information you are seeking\nis NOT to be used for commercial purposes or solicitation.\n\nUsing club information for commercial purposes or solicitation is strictly prohibited.") ) {
	document.cookie="lions" + page + "=yes";
	return true;
  } else {
	return false; 
 }
}
else { return true; }
}
