<!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(139, 128, 223, 276);

context.strokeStyle = '#000000';
context.strokeRect(111, 109, 274, 319);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(110, 375);
context.lineTo(138, 376);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(111, 323);
context.lineTo(138, 324);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(138, 373);
context.lineTo(168, 343);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(225, 385);
context.lineTo(226, 356);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(225, 357);
context.lineTo(327, 357);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(324, 356);
context.lineTo(324, 383);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(224, 356);
context.lineTo(255, 336);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(254, 335);
context.lineTo(335, 337);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(333, 338);
context.lineTo(324, 357);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(333, 337);
context.lineTo(332, 371);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(192, 178);
context.scale(0.8, 1);
context.beginPath();
context.arc(0, 0, 26, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(302, 175.5);
context.scale(0.8695652173913043, 1);
context.beginPath();
context.arc(0, 0, 30, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(196, 265.5);
context.scale(0.9473684210526315, 1);
context.beginPath();
context.arc(0, 0, 26, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(302, 263);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 31, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.strokeRect(373, 153, 11, 78);

context.strokeStyle = '#000000';
context.strokeRect(375, 288, 11, 79);
</script>
</body>
</html>