<!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(126, 38, 315, 177);

context.strokeStyle = '#000000';
context.strokeRect(146, 63, 75, 62);

context.strokeStyle = '#000000';
context.strokeRect(349, 71, 67, 58);

context.strokeStyle = '#000000';
context.strokeRect(215, 159, 113, 37);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(229, 158);

context.lineTo(229, 159);
context.stroke();

context.lineTo(229, 160);
context.stroke();

context.lineTo(229, 162);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(176, 215, 193, 171);

context.strokeStyle = '#000000';
context.strokeRect(144, 387, 71, 35);

context.strokeStyle = '#000000';
context.strokeRect(318, 386, 72, 36);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(212, 241);
context.lineTo(333, 241);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(331, 241);
context.lineTo(272, 318);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(214, 240);
context.lineTo(272, 318);
context.stroke();
context.closePath();
</script>
</body>
</html>