<!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(15, 22, 51, 406);

context.strokeStyle = '#000000';
context.strokeRect(66, 429, 481, 44);

context.strokeStyle = '#000000';
context.strokeRect(76, 22, 138, 140);

context.strokeStyle = '#000000';
context.strokeRect(79, 173, 133, 137);

context.strokeStyle = '#000000';
context.strokeRect(79, 320, 132, 98);

context.strokeStyle = '#000000';
context.strokeRect(228, 24, 120, 135);

context.strokeStyle = '#000000';
context.strokeRect(236, 177, 110, 133);

context.strokeStyle = '#000000';
context.strokeRect(246, 326, 103, 83);

context.strokeStyle = '#000000';
context.strokeRect(378, 29, 86, 124);

context.strokeStyle = '#000000';
context.strokeRect(376, 175, 82, 133);

context.strokeStyle = '#000000';
context.strokeRect(380, 327, 80, 79);
</script>
</body>
</html>