<!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(29, 52, 556, 432);

context.strokeStyle = '#000000';
context.strokeRect(79, 127, 106, 110);

context.strokeStyle = '#000000';
context.strokeRect(222, 132, 105, 108);

context.strokeStyle = '#000000';
context.strokeRect(371, 131, 101, 125);

context.strokeStyle = '#000000';
context.strokeRect(86, 263, 107, 97);

context.strokeStyle = '#000000';
context.strokeRect(104, 388, 99, 78);

context.strokeStyle = '#000000';
context.strokeRect(237, 388, 104, 77);

context.strokeStyle = '#000000';
context.strokeRect(240, 273, 89, 84);

context.strokeStyle = '#000000';
context.strokeRect(380, 281, 82, 81);

context.strokeStyle = '#000000';
context.strokeRect(382, 396, 88, 75);
</script>
</body>
</html>