<!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(198, 43, 97, 86);

context.strokeStyle = '#000000';
context.strokeRect(163, 133, 171, 187);

context.strokeStyle = '#000000';
context.strokeRect(333, 133, 43, 94);

context.strokeStyle = '#000000';
context.strokeRect(109, 134, 54, 96);

context.strokeStyle = '#000000';
context.strokeRect(256, 56, 28, 27);

context.strokeStyle = '#000000';
context.strokeRect(205, 55, 36, 28);

context.strokeStyle = '#000000';
context.strokeRect(218, 110, 57, 5);

context.strokeStyle = '#000000';
context.strokeRect(241, 88, 4, 12);

context.strokeStyle = '#000000';
context.strokeRect(265, 67, 5, 7);

context.strokeStyle = '#000000';
context.strokeRect(217, 66, 5, 5);

context.strokeStyle = '#000000';
context.strokeRect(236, 134, 19, 184);

context.strokeStyle = '#000000';
context.strokeRect(162, 315, 75, 165);

context.strokeStyle = '#000000';
context.strokeRect(259, 315, 73, 163);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(297, 81);
context.lineTo(331, 30);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(197, 84);
context.lineTo(157, 27);
context.stroke();
context.closePath();
</script>
</body>
</html>