<!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(132, 49, 160, 140);

context.strokeStyle = '#000000';
context.strokeRect(74, 113, 175, 149);

context.strokeStyle = '#000000';
context.strokeRect(206, 23, 164, 137);

context.strokeStyle = '#000000';
context.save();
context.translate(290.5, 85);
context.scale(1, 0.27906976744186046);
context.beginPath();
context.arc(0, 0, 45, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(260, 226.5);
context.scale(1, 0.35714285714285715);
context.beginPath();
context.arc(0, 0, 45, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(73, 204.5);
context.scale(1, 0.7352941176470589);
context.beginPath();
context.arc(0, 0, 42, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(125.5, 63.5);
context.scale(1, 0.5483870967741935);
context.beginPath();
context.arc(0, 0, 35, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(174, 188.5);
context.scale(0.5641025641025641, 1);
context.beginPath();
context.arc(0, 0, 45, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(343.5, 161.5);
context.scale(0.3191489361702128, 1);
context.beginPath();
context.arc(0, 0, 49, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(264, 98);
context.scale(1, 0);
context.beginPath();
context.arc(0, 0, 142, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(229, 133);
context.scale(0.08, 1);
context.beginPath();
context.arc(0, 0, 50, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();
</script>
</body>
</html>