<!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(225, 76, 12, 235);

context.strokeStyle = '#000000';
context.strokeRect(171, 310, 118, 15);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(140, 207);

context.lineTo(140, 207);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(80, 182, 68, 16);

context.strokeStyle = '#000000';
context.strokeRect(303, 177, 68, 20);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(113, 198);
context.lineTo(347, 199);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.save();
context.translate(229.5, 183.5);
context.scale(1, 0.5652173913043478);
context.beginPath();
context.arc(0, 0, 26, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.strokeRect(90, 162, 35, 19);

context.strokeStyle = '#000000';
context.strokeRect(125, 162, 14, 17);

context.strokeStyle = '#000000';
context.strokeRect(101, 139, 19, 21);

context.strokeStyle = '#000000';
context.strokeRect(122, 147, 11, 15);

context.strokeStyle = '#000000';
context.strokeRect(328, 163, 30, 12);

context.strokeStyle = '#000000';
context.strokeRect(340, 153, 7, 7);
</script>
</body>
</html>