}
?>
			</div>
			<div id="header"> Diagnostics Console</div>
			

			<script type="text/javascript">

			function isReceiverOnline()
			{
				if(<?php 
echo json_encode($c1->isReceiverOnline());
?>
 == true)
					document.getElementById("content").innerHTML = '<span style="background-color: #00FF00;">Receiver <?php 
echo $c1->getReceiverIP() . " ";
?>
is online!</span><br /><input type="button" value="Check router" onclick="isRouterOnline()">';
				else
					document.getElementById("content").innerHTML = '<span style="background-color: #FF0000;">Receiver <?php 
echo $c1->getReceiverIP() . " ";
?>
is offline!</span><br />Is the light on the PoE injector on?<br />\
																	<img src="images/poeInjectorFlashing.gif" width="202px" height="175px"><br />\
																	<input type="button" value="Yes" onclick="checkPOECables()">\
																	<input type="button" value="No" onclick="checkPOEPower()">';
			}
			
			function isRouterOnline()
			{
				if(<?php 
			        <tr>
			        	<td><label for="receiverTypeInput">Receiver Type:</label></td>
			        	<td><input class="inputalign" type="text" id="receiverTypeInput" name="receiverTypeInput" value='<?php 
echo $c1->getReceiverType();
?>
'><span style="color:red"><?php 
if (isset($errors['receiverTypeInput'])) {
    echo $errors['receiverTypeInput'];
}
?>
</span></td>
		        	</tr>
			        <tr>
			      		<td><label for="receiverAddressInput">Receiver Address:</label></td>
			        	<td><input class="inputalign" required type="text" id="receiverAddressInput" name="receiverAddressInput" value='<?php 
echo $c1->getReceiverIP();
?>
'><span style="color:red">*<?php 
if (isset($errors['receiverAddressInput'])) {
    echo $errors['receiverAddressInput'];
}
?>
</span></td>
			        </tr>
			        <tr>
			        	<td><label for="routerAddressInput">Router Address:</label></td>
			        	<td><input class="inputalign" required type="text" id="routerAddressInput" name="routerAddressInput" value='<?php 
echo $c1->getRouterIP();
?>
'><span style="color:red">*<?php 
if (isset($errors['routerAddressInput'])) {