<!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(53, 152, 81, 51);

context.strokeStyle = '#000000';
context.strokeRect(123, 51, 11, 17);

context.strokeStyle = '#000000';
context.strokeRect(156, 253, 34, 2);

context.strokeStyle = '#000000';
context.strokeRect(339, 263, 109, 73);

context.strokeStyle = '#000000';
context.strokeRect(84, 162, 7, 28);

context.strokeStyle = '#000000';
context.strokeRect(84, 190, 0, 0);

context.strokeStyle = '#000000';
context.strokeRect(84, 171, 10, 19);

context.strokeStyle = '#000000';
context.strokeRect(94, 91, 305, 80);

context.strokeStyle = '#000000';
context.strokeRect(277, 32, 185, 310);
</script>
</body>
</html>