<!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(10, 136, 76, 199);

context.strokeStyle = '#000000';
context.strokeRect(100, 137, 340, 198);

context.strokeStyle = '#000000';
context.strokeRect(450, 242, 142, 91);

context.strokeStyle = '#000000';
context.strokeRect(452, 136, 138, 86);

context.strokeStyle = '#000000';
context.save();
context.translate(173.5, 257);
context.scale(0.3958333333333333, 1);
context.beginPath();
context.arc(0, 0, 52, 0, 6.283185307179586, false);
context.stroke();
context.closePath();
context.restore();

context.strokeStyle = '#000000';
context.strokeRect(108, 201, 65, 106);

context.strokeStyle = '#000000';
context.strokeRect(266, 73, 69, 157);

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

context.strokeStyle = '#000000';
context.strokeRect(11, 343, 578, 103);

context.strokeStyle = '#000000';
context.strokeRect(454, 3, 139, 92);
</script>
</body>
</html>