<!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(233, 89, 172, 292);

context.strokeStyle = '#000000';
context.strokeRect(22, 61, 278, 119);

context.strokeStyle = '#000000';
context.strokeRect(356, 286, 156, 154);

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 8;

context.lineWidth = 9;

context.lineWidth = 10;

context.lineWidth = 11;

context.strokeStyle = '#000000';
context.strokeRect(378, 74, 83, 56);

context.strokeStyle = '#000000';
context.strokeRect(162, 193, 292, 52);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(22, 197);
context.lineTo(223, 445);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(264, 485);
context.lineTo(92, 207);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(28, 235);
context.lineTo(232, 479);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(8, 287);
context.lineTo(209, 481);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(276, 471);
context.lineTo(100, 188);
context.stroke();
context.closePath();
</script>
</body>
</html>