<!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(185, 39, 109, 105);

context.strokeStyle = '#000000';
context.strokeRect(223, 7, 41, 31);

context.strokeStyle = '#000000';
context.strokeRect(216, 143, 54, 38);

context.strokeStyle = '#000000';
context.strokeRect(159, 185, 165, 152);

context.strokeStyle = '#000000';
context.strokeRect(95, 216, 60, 46);

context.strokeStyle = '#000000';
context.strokeRect(325, 221, 65, 40);

context.strokeStyle = '#000000';
context.strokeRect(391, 208, 31, 140);

context.strokeStyle = '#000000';
context.strokeRect(42, 206, 50, 146);

context.strokeStyle = '#000000';
context.strokeRect(199, 337, 28, 79);

context.strokeStyle = '#000000';
context.strokeRect(268, 335, 27, 81);

context.strokeStyle = '#000000';
context.strokeRect(266, 415, 90, 37);

context.strokeStyle = '#000000';
context.strokeRect(125, 413, 102, 35);

context.strokeStyle = '#000000';
context.strokeRect(213, 58, 20, 26);

context.strokeStyle = '#000000';
context.strokeRect(254, 59, 18, 28);

context.strokeStyle = '#000000';
context.strokeRect(209, 107, 66, 20);
</script>
</body>
</html>