<!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(63, 37, 342, 378);

context.lineWidth = 4;

context.strokeStyle = '#000000';
context.strokeRect(90, 58, 47, 84);

context.strokeStyle = '#000000';
context.strokeRect(89, 157, 49, 73);

context.strokeStyle = '#000000';
context.strokeRect(89, 256, 49, 81);

context.strokeStyle = '#000000';
context.strokeRect(177, 93, 108, 47);

context.strokeStyle = '#000000';
context.strokeRect(145, 348, 83, 44);

context.strokeStyle = '#000000';
context.strokeRect(255, 347, 71, 44);

context.strokeStyle = '#000000';
context.strokeRect(356, 288, 44, 88);

context.strokeStyle = '#000000';
context.strokeRect(354, 165, 44, 90);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(381, 73);
context.lineTo(428, 73);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(380, 116);
context.lineTo(429, 117);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(214, 50, 36, 25);

context.strokeStyle = '#000000';
context.strokeRect(143, 101, 21, 32);

context.strokeStyle = '#000000';
context.strokeRect(145, 193, 20, 33);

context.strokeStyle = '#000000';
context.strokeRect(145, 296, 24, 38);

context.strokeStyle = '#000000';
context.strokeRect(193, 311, 30, 26);

context.strokeStyle = '#000000';
context.strokeRect(282, 311, 34, 21);

context.strokeStyle = '#000000';
context.strokeRect(325, 293, 22, 31);

context.strokeStyle = '#000000';
context.strokeRect(329, 176, 18, 38);
</script>
</body>
</html>