Are the cables inserted correctly according to the diagram above?\
																<input type="button" value="Yes" onclick="code(106)">\
																<input type="button" value="Rediagnose" onclick="location.reload()">';
			}			

			function computerFault()
			{
				document.getElementById("content").innerHTML = 'Is the customer attached wirelessly, or by an ethernet cable?<br />\
																<input type="button" value="Wireless" onclick="wirelessProblem()">\
																<input type="button" value="Wired" onclick="wiredProblem()">';
			}
			function wirelessProblem()
			{
				document.getElementById("content").innerHTML = 'Is the customer connected to the correct WiFi? They can find out by clicking the wireless icon on the bottom right of the screen\
																<a href="http://<?php 
echo $c1->getRouterIP() . ":64080";
?>
" target="_blank">\
																<br />Click here to open the router configuration page.</a><br />\
																Are they connected to the wireless name written in the \'Name (SSID):\' field of the router.<br />\
																<input type="button" value="Yes" onclick="code(103)">\
																<input type="button" value="No" onclick="code(104)>';
			}
		
			function code(ID)
			{
				document.getElementById("content").innerHTML = 'Create a support ticket with the following information.<br />\
																Error Code: <strong>' + ID + '</strong>\
																<?php 
echo json_encode($c1->printCustomerInfo());
?>
			        <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'])) {
    echo $errors['routerAddressInput'];
}
?>
</span></td>
			        </tr>
		        </table>
		        <input type="submit" value="Save">
	        </form>
	        
        </div>
	</body>
</html>