<!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(9, 97, 105, 147);

context.strokeStyle = '#000000';
context.strokeRect(493, 91, 94, 145);

context.strokeStyle = '#000000';
context.strokeRect(130, 95, 52, 44);

context.strokeStyle = '#000000';
context.strokeRect(192, 92, 49, 47);

context.strokeStyle = '#000000';
context.strokeRect(250, 91, 58, 48);

context.strokeStyle = '#000000';
context.strokeRect(315, 89, 54, 51);

context.strokeStyle = '#000000';
context.strokeRect(378, 90, 44, 50);

context.strokeStyle = '#000000';
context.strokeRect(431, 92, 50, 48);

context.strokeStyle = '#000000';
context.strokeRect(133, 185, 48, 51);

context.strokeStyle = '#000000';
context.strokeRect(193, 183, 49, 53);

context.strokeStyle = '#000000';
context.strokeRect(255, 182, 54, 54);

context.strokeStyle = '#000000';
context.strokeRect(319, 183, 51, 52);

context.strokeStyle = '#000000';
context.strokeRect(381, 183, 47, 52);

context.strokeStyle = '#000000';
context.strokeRect(438, 178, 43, 56);
</script>
</body>
</html>