<!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(189, 49, 203, 62);

context.strokeStyle = '#000000';
context.strokeRect(44, 180, 72, 57);

context.strokeStyle = '#000000';
context.strokeRect(39, 250, 80, 48);

context.strokeStyle = '#000000';
context.strokeRect(47, 311, 73, 57);

context.strokeStyle = '#000000';
context.strokeRect(147, 173, 72, 62);

context.strokeStyle = '#000000';
context.strokeRect(142, 249, 79, 52);

context.strokeStyle = '#000000';
context.strokeRect(143, 312, 74, 56);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(71, 175);
context.lineTo(70, 139);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(296, 108);
context.lineTo(296, 141);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(296, 141);
context.lineTo(72, 142);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(181, 142);
context.lineTo(181, 171);
context.stroke();
context.closePath();
</script>
</body>
</html>