<!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(134, 98, 244, 61);

context.strokeStyle = '#000000';
context.strokeRect(306, 165, 171, 152);

context.strokeStyle = '#000000';
context.strokeRect(189, 227, 109, 107);

context.strokeStyle = '#000000';
context.strokeRect(214, 88, 85, 184);

context.strokeStyle = '#000000';
context.strokeRect(417, 36, 86, 199);

context.strokeStyle = '#000000';
context.strokeRect(394, 275, 89, 143);

context.strokeStyle = '#000000';
context.strokeRect(24, 263, 262, 133);

context.strokeStyle = '#000000';
context.strokeRect(70, 70, 91, 169);

context.strokeStyle = '#000000';
context.strokeRect(181, 174, 21, 39);

context.strokeStyle = '#000000';
context.strokeRect(346, 28, 58, 58);

context.strokeStyle = '#000000';
context.strokeRect(384, 107, 20, 274);

context.strokeStyle = '#000000';
context.strokeRect(302, 340, 83, 80);

context.strokeStyle = '#000000';
context.strokeRect(27, 152, 90, 75);

context.strokeStyle = '#000000';
context.strokeRect(240, 21, 25, 37);

context.strokeStyle = '#000000';
context.strokeRect(191, 22, 14, 53);

context.strokeStyle = '#000000';
context.strokeRect(290, 49, 82, 19);

context.strokeStyle = '#000000';
context.strokeRect(522, 352, 24, 60);
</script>
</body>
</html>