<!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(28, 32, 183, 133);

context.strokeStyle = '#000000';
context.strokeRect(145, 93, 156, 104);

context.strokeStyle = '#000000';
context.strokeRect(266, 159, 169, 105);

context.strokeStyle = '#000000';
context.strokeRect(94, 213, 212, 111);

context.strokeStyle = '#000000';
context.strokeRect(385, 231, 184, 114);

context.strokeStyle = '#000000';
context.strokeRect(214, 274, 217, 144);

context.strokeStyle = '#000000';
context.strokeRect(316, 35, 200, 160);

context.strokeStyle = '#000000';
context.strokeRect(23, 282, 222, 160);

context.strokeStyle = '#000000';
context.strokeRect(350, 326, 189, 118);

context.strokeStyle = '#000000';
context.strokeRect(362, 14, 208, 122);

context.strokeStyle = '#000000';
context.strokeRect(82, 54, 170, 89);

context.strokeStyle = '#000000';
context.strokeRect(44, 153, 137, 47);

context.strokeStyle = '#000000';
context.strokeRect(281, 29, 203, 78);

context.strokeStyle = '#000000';
context.strokeRect(399, 62, 147, 214);

context.strokeStyle = '#000000';
context.strokeRect(49, 225, 186, 128);

context.strokeStyle = '#000000';
context.strokeRect(71, 394, 243, 81);
</script>
</body>
</html>