<!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(48, 143, 120, 86);

context.strokeStyle = '#000000';
context.strokeRect(61, 290, 72, 67);

context.strokeStyle = '#000000';
context.strokeRect(224, 144, 197, 85);

context.strokeStyle = '#000000';
context.strokeRect(461, 144, 119, 88);

context.strokeStyle = '#000000';
context.strokeRect(490, 310, 81, 68);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(249, 37);
context.lineTo(120, 423);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(417, 42);
context.lineTo(484, 433);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(125, 25);
context.lineTo(584, 46);
context.stroke();
context.closePath();
</script>
</body>
</html>