<?php
session_start();
include_once './scripts/functions.php';
#в нем что-то типа
$_SESSION['auth'] = false;
#если нашли в базе логин/пасс
$_SESSION['auth'] = true;
?>
<script>alert('<?php echo $_SESSION['auth']; ?>');</script>
echo 'test';
session_start();