Thats a useful bit of code! Thanks Jason...
The Variables that are being sent are;

id, f_name, s_name, unit, auth, web_admin, position, lsdogs_sec, unit_admin, a_co, assessor, lsdogs_chair, lsdogs_tre, un, pw

But I have set the following ones in addition to be sent;

news, email

The first batch were those created by Security Assist at first setup. The other two were set using Security Assist after the page was created.
The code on the page that I assume sets the sessions includes the two that I want in the same places as all the others.
Is there another file somewhere that also holds this information that might not have been updated or is there another reason why they might not be sent?
below is the code that I assume is to do with Sessions;
<?php
if(isset($_POST["LogIn_x"])){
$WA_Auth_Parameter = array(
"connection" => $lsdogs,
"database" => $database_lsdogs,
"tableName" => "users",
"columns" => explode($WA_Auth_Separator,"un".$WA_Auth_Separator."pw"),
"columnValues" => explode($WA_Auth_Separator,"".((isset($_POST["username"]))?$_POST["username"]:"") ."".$WA_Auth_Separator."".((isset($_POST["userpassword"]))?$_POST["userpassword"]:"") .""),
"columnTypes" => explode($WA_Auth_Separator,"text".$WA_Auth_Separator."text"),
"sessionColumns" => explode($WA_Auth_Separator,"id".$WA_Auth_Separator."f_name".$WA_Auth_Separator."s_name".$WA_Auth_Separator."unit".$WA_Auth_Separator."auth".$WA_Auth_Separator."web_admin".$WA_Auth_Separator."position".$WA_Auth_Separator."lsdogs_sec".$WA_Auth_Separator."unit_admin".$WA_Auth_Separator."a_co".$WA_Auth_Separator."assessor".$WA_Auth_Separator."lsdogs_chair".$WA_Auth_Separator."lsdogs_tre".$WA_Auth_Separator."un".$WA_Auth_Separator."pw".$WA_Auth_Separator."news".$WA_Auth_Separator."email"),
"sessionNames" => explode($WA_Auth_Separator,"id".$WA_Auth_Separator."f_name".$WA_Auth_Separator."s_name".$WA_Auth_Separator."unit".$WA_Auth_Separator."auth".$WA_Auth_Separator."web_admin".$WA_Auth_Separator."position".$WA_Auth_Separator."lsdogs_sec".$WA_Auth_Separator."unit_admin".$WA_Auth_Separator."a_co".$WA_Auth_Separator."assessor".$WA_Auth_Separator."lsdogs_chair".$WA_Auth_Separator."lsdogs_tre".$WA_Auth_Separator."un".$WA_Auth_Separator."pw".$WA_Auth_Separator."news".$WA_Auth_Separator."email"),
"successRedirect" => "index.php",
"failRedirect" => "",
"gotoPreviousURL" => TRUE,
"keepQueryString" => TRUE
);
WA_AuthenticateUser($WA_Auth_Parameter);
}
?>