<!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(112, 159, 310, 87);

context.strokeStyle = '#000000';
context.strokeRect(292, 111, 129, 44);

context.strokeStyle = '#000000';
context.strokeRect(287, 91, 171, 18);

context.strokeStyle = '#000000';
context.strokeRect(138, 107, 28, 49);

context.strokeStyle = '#000000';
context.strokeRect(133, 87, 37, 20);

context.strokeStyle = '#000000';
context.strokeRect(205, 118, 43, 38);

context.strokeStyle = '#000000';
context.save();
context.translate(165, 258);
context.scale(1, 1);
context.beginPath();
context.arc(0, 0, 34, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

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

context.strokeStyle = '#000000';
context.save();
context.translate(359.5, 261);
context.scale(0.9545454545454546, 1);
context.beginPath();
context.arc(0, 0, 30, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(179, 271);
context.lineTo(369, 270);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(71, 240, 45, 32);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(117, 254);
context.lineTo(310, 268);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(315, 122, 34, 22);

context.strokeStyle = '#000000';
context.strokeRect(369, 124, 28, 19);
</script>
</body>
</html>