<!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.beginPath();
context.moveTo(98, 69);
context.lineTo(275, 69);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(96, 20, 179, 94);

context.strokeStyle = '#000000';
context.save();
context.translate(107.5, 25.5);
context.scale(1, 0.2);
context.beginPath();
context.arc(0, 0, 5, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.save();
context.translate(157.5, 57.5);
context.scale(1, 0.7837837837837838);
context.beginPath();
context.arc(0, 0, 47, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

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

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(320, 86);

context.lineTo(320, 86);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(310, 83);

context.lineTo(310, 83);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(110, 26);

context.lineTo(110, 26);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(110, 26);

context.lineTo(110, 26);
context.stroke();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(106, 27);

context.lineTo(106, 26);
context.stroke();

context.lineTo(106, 26);
context.stroke();

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(106, 26);

context.lineTo(106, 26);
context.stroke();

context.lineWidth = 2;

context.lineWidth = 5;
</script>
</body>
</html>