<!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(71, 20, 456, 142);

context.strokeStyle = '#000000';
context.strokeRect(216, 164, 160, 81);

context.strokeStyle = '#000000';
context.strokeRect(95, 249, 409, 186);

context.strokeStyle = '#000000';
context.strokeRect(172, 434, 45, 60);

context.strokeStyle = '#000000';
context.strokeRect(369, 439, 65, 43);

context.strokeStyle = '#000000';
context.save();
context.translate(184.5, 106.5);
context.scale(1, 0.42168674698795183);
context.beginPath();
context.arc(0, 0, 90, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(408, 114.5);
context.scale(1, 0.4342105263157895);
context.beginPath();
context.arc(0, 0, 83, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(163, 290);
context.scale(0.8181818181818182, 1);
context.beginPath();
context.arc(0, 0, 28, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(427, 290);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 25, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(297.5, 285);
context.scale(1, 0.8888888888888888);
context.beginPath();
context.arc(0, 0, 36, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(301, 84);
context.lineTo(301, 132);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(401, 118);
context.lineTo(408, 118);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(186, 114);
context.lineTo(194, 113);
context.stroke();
context.closePath();
</script>
</body>
</html>