// **************************************************
// Cookie Handler Authorisation Check
// **************************************************
function checkAuth()
{
     // debug: alert('Checking Access permissions');
     username=getCookie('EncryptIsYes');
     // debug: alert('Cookie is '+username);
if (username!=null && username!="")
     {
	// debug: alert('Authenticated Access Permitted');

     }
     else 
     {
        // debug: alert('Security Breach attempted');
        // jump back to login page
        location.replace("p4653232.html");
    } 	
}

