<!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(207, 160, 173, 202);

context.strokeStyle = '#000000';
context.strokeRect(243, 126, 107, 34);

context.strokeStyle = '#000000';
context.strokeRect(184, 336, 55, 94);

context.strokeStyle = '#000000';
context.strokeRect(335, 331, 59, 96);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(372, 158);

context.strokeStyle = '#000000';
context.strokeRect(372, 148, 104, 44);

context.strokeStyle = '#000000';
context.strokeRect(113, 143, 99, 43);

context.strokeStyle = '#000000';
context.strokeRect(228, 42, 138, 81);

context.strokeStyle = '#000000';
context.strokeRect(198, 56, 27, 52);

context.strokeStyle = '#000000';
context.strokeRect(365, 54, 29, 50);

context.strokeStyle = '#000000';
context.strokeRect(238, 56, 36, 20);

context.strokeStyle = '#000000';
context.strokeRect(312, 56, 36, 21);

context.strokeStyle = '#000000';
context.strokeRect(268, 85, 43, 11);

context.strokeStyle = '#000000';
context.strokeRect(239, 105, 97, 9);
</script>
</body>
</html>