<!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.save();
context.translate(274.5, 105);
context.scale(0.5357142857142857, 1);
context.beginPath();
context.arc(0, 0, 32, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(240, 136);

context.strokeStyle = '#000000';
context.strokeRect(245, 136, 65, 133);

context.lineWidth = 6;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(244, 136);
context.lineTo(225, 262);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(310, 135);
context.lineTo(336, 265);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(245, 268, 21, 153);

context.strokeStyle = '#000000';
context.strokeRect(289, 267, 21, 154);

context.lineWidth = 5;

context.lineWidth = 3;

context.lineWidth = 2;

context.lineWidth = 1;

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(265, 90);

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

context.strokeStyle = '#000000';
context.save();
context.translate(278.5, 89.5);
context.scale(0.42857142857142855, 1);
context.beginPath();
context.arc(0, 0, 8, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(39, 68);
</script>
</body>
</html>