<!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(79, 94, 33, 239);

context.strokeStyle = '#000000';
context.strokeRect(144, 94, 59, 11);

context.strokeStyle = '#000000';
context.strokeRect(232, 97, 170, 0);

context.strokeStyle = '#000000';
context.strokeRect(226, 90, 139, 19);

context.strokeStyle = '#000000';
context.strokeRect(385, 91, 87, 19);

context.strokeStyle = '#000000';
context.strokeRect(486, 97, 25, 12);

context.strokeStyle = '#000000';
context.strokeRect(181, 122, 131, 19);

context.strokeStyle = '#000000';
context.strokeRect(182, 154, 130, 19);

context.strokeStyle = '#000000';
context.strokeRect(333, 122, 139, 17);

context.strokeStyle = '#000000';
context.strokeRect(336, 152, 205, 15);

context.strokeStyle = '#000000';
context.strokeRect(497, 121, 80, 20);

context.strokeStyle = '#000000';
context.strokeRect(340, 180, 73, 22);

context.strokeStyle = '#000000';
context.strokeRect(423, 180, 79, 15);

context.strokeStyle = '#000000';
context.strokeRect(516, 184, 49, 18);

context.strokeStyle = '#000000';
context.strokeRect(554, 150, 15, 12);

context.strokeStyle = '#000000';
context.strokeRect(154, 214, 20, 20);

context.strokeStyle = '#000000';
context.strokeRect(173, 253, 114, 26);

context.strokeStyle = '#000000';
context.strokeRect(148, 254, 137, 24);

context.strokeStyle = '#000000';
context.strokeRect(306, 259, 132, 26);

context.strokeStyle = '#000000';
context.strokeRect(152, 300, 109, 21);

context.strokeStyle = '#000000';
context.strokeRect(307, 301, 56, 18);
</script>
</body>
</html>