<!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 = 4;

context.lineWidth = 3;

context.lineWidth = 2;

context.lineWidth = 1;

context.strokeStyle = '#000000';
context.strokeRect(399, 93, 71, 25);

context.strokeStyle = '#000000';
context.strokeRect(417, 102, 9, 9);

context.strokeStyle = '#000000';
context.strokeRect(434, 150, 33, 60);

context.strokeStyle = '#000000';
context.strokeRect(370, 147, 3, 109);

context.strokeStyle = '#000000';
context.strokeRect(206, 149, 41, 77);

context.strokeStyle = '#000000';
context.strokeRect(319, 105, 12, 107);

context.strokeStyle = '#000000';
context.strokeRect(172, 64, 124, 55);

context.strokeStyle = '#000000';
context.strokeRect(64, 163, 33, 66);

context.strokeStyle = '#000000';
context.strokeRect(206, 286, 137, 38);

context.strokeStyle = '#000000';
context.strokeRect(461, 357, 22, 51);

context.strokeStyle = '#000000';
context.strokeRect(77, 383, 69, 19);

context.strokeStyle = '#000000';
context.strokeRect(393, 359, 25, 38);

context.strokeStyle = '#000000';
context.strokeRect(216, 409, 96, 3);

context.strokeStyle = '#000000';
context.strokeRect(455, 252, 51, 17);

context.strokeStyle = '#000000';
context.strokeRect(445, 295, 112, 9);

context.strokeStyle = '#000000';
context.strokeRect(361, 36, 153, 3);
</script>
</body>
</html>