<!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(104, 96, 328, 168);

context.strokeStyle = '#000000';
context.strokeRect(120, 112, 290, 132);

context.strokeStyle = '#000000';
context.strokeRect(146, 130, 235, 98);

context.strokeStyle = '#000000';
context.strokeRect(178, 148, 173, 60);

context.strokeStyle = '#000000';
context.strokeRect(206, 158, 128, 38);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(144, 127);
context.lineTo(204, 157);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(205, 193);
context.lineTo(147, 225);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(334, 193);
context.lineTo(378, 226);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(336, 155);
context.lineTo(383, 130);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(335, 152);
context.lineTo(383, 128);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(336, 155);
context.lineTo(330, 161);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(379, 129);
context.lineTo(432, 96);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(380, 226);
context.lineTo(430, 263);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(146, 221);
context.lineTo(148, 222);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(148, 221);
context.lineTo(103, 261);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(146, 128);
context.lineTo(104, 96);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(235.5, 171);
context.scale(0.5, 1);
context.beginPath();
context.arc(0, 0, 2, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(288.5, 170);
context.scale(0.5, 1);
context.beginPath();
context.arc(0, 0, 2, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(263.5, 177.5);
context.scale(1, 0.3333333333333333);
context.beginPath();
context.arc(0, 0, 9, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(264, 177);
context.scale(1, 0.25);
context.beginPath();
context.arc(0, 0, 8, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>