<!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(179, 9, 316, 189);
context.strokeStyle = '#000000';
context.strokeRect(179, 197, 317, 293);
context.strokeStyle = '#000000';
context.strokeRect(180, 197, 116, 75);
context.strokeStyle = '#000000';
context.strokeRect(392, 198, 103, 75);
context.strokeStyle = '#000000';
context.strokeRect(296, 197, 95, 76);
context.strokeStyle = '#000000';
context.strokeRect(178, 274, 117, 63);
context.strokeStyle = '#000000';
context.strokeRect(178, 336, 116, 64);
context.strokeStyle = '#000000';
context.strokeRect(180, 400, 114, 87);
context.strokeStyle = '#000000';
context.strokeRect(295, 273, 97, 66);
context.strokeStyle = '#000000';
context.strokeRect(293, 341, 100, 59);
context.strokeStyle = '#000000';
context.strokeRect(294, 400, 100, 87);
context.strokeStyle = '#000000';
context.strokeRect(392, 275, 102, 64);
context.strokeStyle = '#000000';
context.strokeRect(393, 336, 101, 66);
context.strokeStyle = '#000000';
context.strokeRect(395, 400, 100, 90);
</script>
</body>
</html>