<!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(27, 19, 278, 40);

context.strokeStyle = '#000000';
context.strokeRect(31, 80, 26, 15);

context.strokeStyle = '#000000';
context.strokeRect(72, 82, 23, 13);

context.strokeStyle = '#000000';
context.strokeRect(111, 82, 26, 14);

context.strokeStyle = '#000000';
context.strokeRect(152, 81, 33, 14);

context.strokeStyle = '#000000';
context.strokeRect(203, 83, 33, 15);

context.strokeStyle = '#000000';
context.strokeRect(253, 83, 37, 16);

context.strokeStyle = '#000000';
context.strokeRect(324, 28, 27, 22);

context.strokeStyle = '#000000';
context.strokeRect(23, 159, 267, 54);

context.strokeStyle = '#000000';
context.strokeRect(31, 131, 28, 16);

context.strokeStyle = '#000000';
context.strokeRect(83, 131, 28, 14);

context.strokeStyle = '#000000';
context.strokeRect(135, 132, 24, 15);

context.strokeStyle = '#000000';
context.strokeRect(196, 131, 30, 16);

context.strokeStyle = '#000000';
context.strokeRect(257, 131, 34, 14);

context.strokeStyle = '#000000';
context.strokeRect(305, 169, 24, 17);

context.strokeStyle = '#000000';
context.strokeRect(304, 195, 23, 14);

context.strokeStyle = '#000000';
context.strokeRect(259, 223, 30, 14);

context.strokeStyle = '#000000';
context.strokeRect(209, 229, 30, 11);

context.strokeStyle = '#000000';
context.strokeRect(159, 231, 37, 13);

context.strokeStyle = '#000000';
context.strokeRect(115, 229, 31, 15);

context.strokeStyle = '#000000';
context.strokeRect(71, 231, 29, 13);

context.strokeStyle = '#000000';
context.strokeRect(35, 234, 28, 15);
</script>
</body>
</html>