<!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(45, 65, 180, 18);

context.strokeStyle = '#000000';
context.strokeRect(64, 69, 210, 29);

context.strokeStyle = '#000000';
context.strokeRect(352, 86, 61, 50);

context.strokeStyle = '#000000';
context.strokeRect(454, 84, 62, 68);

context.strokeStyle = '#000000';
context.strokeRect(73, 155, 22, 17);

context.strokeStyle = '#000000';
context.strokeRect(121, 157, 96, 6);

context.strokeStyle = '#000000';
context.strokeRect(325, 199, 32, 27);

context.strokeStyle = '#000000';
context.strokeRect(48, 201, 31, 20);
</script>
</body>
</html>