<!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(47, 61, 18, 331);

context.strokeStyle = '#000000';
context.strokeRect(65, 62, 118, 21);

context.strokeStyle = '#000000';
context.strokeRect(67, 133, 115, 17);

context.strokeStyle = '#000000';
context.strokeRect(170, 83, 13, 48);

context.strokeStyle = '#000000';
context.strokeRect(100, 185, 15, 207);

context.strokeStyle = '#000000';
context.strokeRect(117, 183, 55, 64);

context.strokeStyle = '#000000';
context.strokeRect(172, 184, 17, 212);

context.strokeStyle = '#000000';
context.strokeRect(119, 296, 49, 18);

context.strokeStyle = '#000000';
context.strokeRect(210, 187, 14, 204);

context.strokeStyle = '#000000';
context.strokeRect(224, 379, 52, 11);

context.strokeStyle = '#000000';
context.strokeRect(275, 187, 15, 192);

context.strokeStyle = '#000000';
context.strokeRect(304, 64, 17, 332);

context.strokeStyle = '#000000';
context.strokeRect(321, 359, 155, 37);

context.strokeStyle = '#000000';
context.strokeRect(404, 155, 118, 203);

context.strokeStyle = '#000000';
context.strokeRect(438, 204, 48, 116);

context.strokeStyle = '#000000';
context.strokeRect(387, 161, 154, 189);
</script>
</body>
</html>