You could put all of the html into seperate functions and include it in your page, then use your session variabels to determine what to display and call the cirresponding function:
<?php
include('html.php');
if($_SESSION['area'] == "one") {
displayAreaOne();
} elseif( etc.... )
displayAreaTwo();
}
?>
I hope this helps
Brad