<!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(73, 86, 9, 9);
context.strokeStyle = '#000000';
context.strokeRect(370, 87, 9, 8);
context.strokeStyle = '#000000';
context.strokeRect(164, 78, 14, 10);
context.strokeStyle = '#000000';
context.strokeRect(274, 124, 15, 9);
context.strokeStyle = '#000000';
context.strokeRect(244, 62, 16, 11);
context.strokeStyle = '#000000';
context.strokeRect(474, 168, 6, 8);
context.strokeStyle = '#000000';
context.strokeRect(433, 96, 11, 14);
context.strokeStyle = '#000000';
context.strokeRect(389, 138, 8, 7);
context.strokeStyle = '#000000';
context.strokeRect(536, 71, 9, 11);
context.strokeStyle = '#000000';
context.strokeRect(456, 31, 10, 13);
</script>
</body>
</html>