<!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.lineWidth = 3;

context.lineWidth = 2;

context.lineWidth = 1;

context.strokeStyle = '#000000';
context.strokeRect(9, 14, 140, 32);

context.strokeStyle = '#000000';
context.strokeRect(168, 16, 144, 17);

context.strokeStyle = '#000000';
context.strokeRect(167, 38, 146, 11);

context.strokeStyle = '#000000';
context.strokeRect(358, 15, 229, 35);

context.strokeStyle = '#000000';
context.strokeRect(14, 84, 149, 32);

context.strokeStyle = '#000000';
context.strokeRect(163, 82, 162, 32);

context.strokeStyle = '#000000';
context.strokeRect(324, 81, 157, 34);

context.strokeStyle = '#000000';
context.strokeRect(483, 81, 108, 34);

context.strokeStyle = '#000000';
context.strokeRect(14, 132, 577, 299);

context.strokeStyle = '#000000';
context.strokeRect(15, 133, 54, 297);

context.strokeStyle = '#000000';
context.strokeRect(69, 131, 309, 300);

context.strokeStyle = '#000000';
context.strokeRect(379, 130, 38, 300);

context.strokeStyle = '#000000';
context.strokeRect(418, 131, 50, 301);

context.strokeStyle = '#000000';
context.strokeRect(469, 131, 38, 300);

context.strokeStyle = '#000000';
context.strokeRect(507, 132, 44, 298);
</script>
</body>
</html>