// **************************************************
// Cookie Handler 3 Check
// **************************************************
function checkCookie()
{
// debug: alert('Check Cookie');

username=getCookie('EncryptIsYes');
if (username!=null && username!="")
{
// debug: alert('Cookie found');
// authenticateUser(authorisatio=EncryptYes,null)
}
else 
{

var exdate=new Date();
username=exdate.toGMTString();
// debug: alert('setting cookie in checkCookie='+username);
setCookie('EncryptIsYes',username,0);
 
}
}
