<!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(3, 6, 588, 485);

context.strokeStyle = '#000000';
context.strokeRect(99, 8, 31, 297);

context.strokeStyle = '#000000';
context.strokeRect(96, 365, 216, 27);

context.strokeStyle = '#000000';
context.strokeRect(178, 444, 28, 42);

context.strokeStyle = '#000000';
context.strokeRect(184, 237, 225, 19);

context.strokeStyle = '#000000';
context.strokeRect(386, 286, 25, 160);

context.strokeStyle = '#000000';
context.strokeRect(412, 286, 179, 33);

context.strokeStyle = '#000000';
context.strokeRect(247, 113, 20, 120);

context.strokeStyle = '#000000';
context.strokeRect(131, 67, 139, 13);

context.strokeStyle = '#000000';
context.strokeRect(268, 143, 57, 18);

context.strokeStyle = '#000000';
context.strokeRect(387, 137, 205, 33);

context.strokeStyle = '#000000';
context.strokeRect(435, 41, 16, 92);
</script>
</body>
</html>