<!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(94, 68, 57, 119);

context.strokeStyle = '#000000';
context.strokeRect(161, 52, 46, 135);

context.strokeStyle = '#000000';
context.strokeRect(216, 37, 50, 150);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(274, 49);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(275, 49);

context.strokeStyle = '#000000';
context.strokeRect(274, 53, 50, 134);

context.strokeStyle = '#000000';
context.strokeRect(333, 127, 57, 145);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(75, 198);

context.strokeStyle = '#000000';
context.strokeRect(75, 196, 249, 174);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(389, 270);
context.lineTo(325, 370);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(333, 270);
context.lineTo(324, 273);
context.stroke();
context.closePath();
</script>
</body>
</html>