<!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(81, 116, 208, 119);

context.strokeStyle = '#000000';
context.strokeRect(209, 160, 137, 172);

context.strokeStyle = '#000000';
context.strokeRect(140, 275, 105, 88);

context.strokeStyle = '#000000';
context.strokeRect(227, 310, 104, 111);

context.strokeStyle = '#000000';
context.strokeRect(302, 84, 85, 174);

context.strokeStyle = '#000000';
context.strokeRect(263, 196, 60, 91);

context.strokeStyle = '#000000';
context.strokeRect(305, 272, 80, 92);

context.strokeStyle = '#000000';
context.strokeRect(193, 188, 40, 105);

context.strokeStyle = '#000000';
context.strokeRect(247, 130, 113, 86);

context.strokeStyle = '#000000';
context.strokeRect(284, 246, 78, 105);

context.strokeStyle = '#000000';
context.strokeRect(266, 384, 144, 86);

context.strokeStyle = '#000000';
context.strokeRect(163, 402, 148, 52);
</script>
</body>
</html>