<?php
@session_start();
$ss = $_SESSION['HRA'];
if ($ss != "true")
{
$type = $_POST['type'];
if($type=="auth")
{
include "checkauth.php";
}else{
include "authlogin.php";
$block = "true";
}
}else
{
$block = "false";
}
?>