<!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(82, 72, 344, 221);

context.strokeStyle = '#000000';
context.strokeRect(203, 190, 96, 217);

context.strokeStyle = '#000000';
context.strokeRect(191, 26, 285, 139);

context.strokeStyle = '#000000';
context.save();
context.translate(220.5, 193.5);
context.scale(1, 0.5675675675675675);
context.beginPath();
context.arc(0, 0, 213, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(441.5, 392);
context.scale(1, 0.891566265060241);
context.beginPath();
context.arc(0, 0, 111, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(499, 213.5);
context.scale(0.972972972972973, 1);
context.beginPath();
context.arc(0, 0, 52, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.lineWidth = 6;

context.lineWidth = 7;

context.lineWidth = 8;

context.strokeStyle = '#000000';
context.save();
context.translate(210.5, 140);
context.scale(0.9883720930232558, 1);
context.beginPath();
context.arc(0, 0, 121, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(534, 92.5);
context.scale(0.9655172413793104, 1);
context.beginPath();
context.arc(0, 0, 40, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(71, 412);
context.lineTo(292, 319);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(289, 319);
context.lineTo(166, 459);
context.stroke();
context.closePath();
</script>
</body>
</html>