<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Your Canvas</title>

<style type="text/css"><!--
#container { position: relative; }
#imageTemp { position: absolute; top: 1px; left: 1px; }
--></style>

</head>
<body>
<canvas id="imageView" width="600" height="500"></canvas>

<script type="text/javascript">
var canvas, context, canvaso, contexto;
canvaso = document.getElementById('imageView');
context = canvaso.getContext('2d');
context.lineWidth = 5;

context.strokeStyle = '#000000';
context.strokeRect(52, 34, 424, 394);

context.lineWidth = 6;

context.strokeStyle = '#7DB5FF';
context.beginPath();
context.moveTo(137, 109);

context.lineTo(137, 109);
context.stroke();

context.strokeStyle = '#7DB5FF';
context.beginPath();
context.moveTo(138, 106);

context.strokeStyle = '#7DB5FF';
context.strokeRect(115, 110, 76, 74);

context.strokeStyle = '#7DB5FF';
context.strokeRect(113, 267, 200, 33);

context.strokeStyle = '#FF822E';
context.strokeRect(90, 36, 351, 31);

context.strokeStyle = '#FF822E';
context.strokeRect(83, 391, 369, 34);

context.strokeStyle = '#4133FF';
context.beginPath();
context.moveTo(169, 133);
context.lineTo(403, 131);
context.stroke();
context.closePath();

context.strokeStyle = '#4133FF';
context.beginPath();
context.moveTo(401, 73);
context.lineTo(401, 131);
context.stroke();
context.closePath();

context.strokeStyle = '#4133FF';
context.beginPath();
context.moveTo(137, 133);
context.lineTo(141, 288);
context.stroke();
context.closePath();

context.strokeStyle = '#4133FF';
context.beginPath();
context.moveTo(291, 286);
context.lineTo(398, 286);
context.stroke();
context.closePath();

context.strokeStyle = '#4133FF';
context.beginPath();
context.moveTo(395, 288);
context.lineTo(395, 390);
context.stroke();
context.closePath();

context.strokeStyle = '#4133FF';
context.beginPath();
context.moveTo(423, 71);
context.lineTo(421, 389);
context.stroke();
context.closePath();

context.strokeStyle = '#B5FFBC';
context.strokeRect(232, 18, 84, 6);

context.strokeStyle = '#B5FFBC';
context.strokeRect(216, 436, 93, 6);

context.strokeStyle = '#B5FFBC';
context.strokeRect(202, 153, 41, 5);

context.strokeStyle = '#B5FFBC';
context.strokeRect(197, 254, 48, 4);

context.strokeStyle = '#B5FFBC';
context.strokeRect(339, 369, 46, 4);

context.strokeStyle = '#B5FFBC';
context.strokeRect(337, 73, 51, 6);
</script>
</body>
</html>