<!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(0, 388, 297, 111);

context.strokeStyle = '#000000';
context.strokeRect(180, 309, 118, 190);

context.strokeStyle = '#000000';
context.strokeRect(179, 274, 392, 75);

context.strokeStyle = '#000000';
context.strokeRect(462, 77, 108, 270);

context.strokeStyle = '#000000';
context.strokeRect(274, 75, 297, 61);

context.strokeStyle = '#000000';
context.strokeRect(273, 73, 88, 150);

context.strokeStyle = '#000000';
context.strokeRect(89, 172, 270, 51);

context.strokeStyle = '#000000';
context.strokeRect(26, 33, 100, 190);

context.strokeStyle = '#000000';
context.strokeRect(64, 31, 187, 21);

context.strokeStyle = '#000000';
context.strokeRect(213, 11, 39, 40);

context.strokeStyle = '#000000';
context.strokeRect(226, 0, 18, 10);
</script>
</body>
</html>