<!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(20, 9, 566, 478);

context.strokeStyle = '#000000';
context.strokeRect(58, 31, 214, 202);

context.strokeStyle = '#000000';
context.strokeRect(311, 96, 244, 120);

context.strokeStyle = '#000000';
context.strokeRect(278, 257, 175, 49);

context.strokeStyle = '#000000';
context.strokeRect(95, 284, 66, 177);

context.strokeStyle = '#000000';
context.strokeRect(131, 388, 416, 66);

context.strokeStyle = '#000000';
context.strokeRect(264, 432, 100, 16);

context.strokeStyle = '#000000';
context.strokeRect(274, 386, 24, 29);

context.strokeStyle = '#000000';
context.strokeRect(331, 388, 37, 24);

context.strokeStyle = '#000000';
context.strokeRect(324, 155, 82, 48);

context.strokeStyle = '#000000';
context.strokeRect(337, 176, 25, 16);

context.strokeStyle = '#000000';
context.strokeRect(72, 167, 89, 52);

context.strokeStyle = '#000000';
context.strokeRect(83, 185, 29, 20);
</script>
</body>
</html>