<!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(56, 47, 510, 428);

context.strokeStyle = '#000000';
context.strokeRect(70, 441, 23, 22);

context.strokeStyle = '#000000';
context.strokeRect(108, 435, 30, 30);

context.strokeStyle = '#000000';
context.strokeRect(162, 436, 24, 29);

context.strokeStyle = '#000000';
context.strokeRect(206, 446, 342, 1);

context.strokeStyle = '#000000';
context.strokeRect(81, 108, 465, 315);

context.strokeStyle = '#000000';
context.save();
context.translate(69.5, 58.5);
context.scale(1, 0.7777777777777778);
context.beginPath();
context.arc(0, 0, 11, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(113, 57);
context.scale(1, 0.75);
context.beginPath();
context.arc(0, 0, 10, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(90, 131);
context.lineTo(523, 133);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(91, 152);
context.lineTo(511, 153);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(98, 182);
context.lineTo(508, 177);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(100, 222);
context.lineTo(530, 218);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(97, 262);
context.lineTo(521, 263);
context.stroke();
context.closePath();
</script>
</body>
</html>