<fieldset>
				<legend>
			<?php 
if ($sessionUserType == "Manager") {
    echo '<a href="job_request_manager.php">';
} else {
    echo '<a href="job_request_exec.php">';
}
echo 'Job Request Per Month</a>';
?>
			</legend>
				
				<div id="graph">Loading graph...</div>
				
				<?php 
$janR = $admin->getAmount('January', 'Rent to Own');
if ($janR == "") {
    $janR = 0;
}
$febR = $admin->getAmount('February', 'Rent to Own');
if ($febR == "") {
    $febR = 0;
}
$marchR = $admin->getAmount('March', 'Rent to Own');
if ($marchR == "") {
    $marchR = 0;
}
$aprilR = $admin->getAmount('April', 'Rent to Own');
if ($aprilR == "") {
    $aprilR = 0;
}