<!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(32, 32, 193, 57);
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(35, 33);
context.lineTo(225, 85);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(34, 85);
context.lineTo(223, 35);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.strokeRect(259, 36, 212, 61);
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(261, 36);
context.lineTo(470, 94);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.strokeRect(61, 91, 130, 71);
context.strokeStyle = '#000000';
context.strokeRect(42, 162, 187, 136);
context.strokeStyle = '#000000';
context.strokeRect(40, 300, 213, 168);
context.strokeStyle = '#000000';
context.strokeRect(250, 334, 165, 134);
context.strokeStyle = '#000000';
context.strokeRect(351, 97, 63, 237);
context.strokeStyle = '#000000';
context.strokeRect(250, 333, 45, 133);
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(288, 337);
context.lineTo(250, 359);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(250, 359);
context.lineTo(294, 384);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(294, 384);
context.lineTo(251, 410);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(251, 410);
context.lineTo(295, 439);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(295, 439);
context.lineTo(252, 463);
context.stroke();
context.closePath();
context.strokeStyle = '#000000';
context.strokeRect(42, 277, 186, 18);
context.strokeStyle = '#000000';
context.strokeRect(81, 164, 93, 108);
context.strokeStyle = '#000000';
context.strokeRect(83, 301, 122, 31);
context.strokeStyle = '#000000';
context.strokeRect(85, 333, 118, 111);
context.strokeStyle = '#000000';
context.strokeRect(203, 363, 42, 68);
</script>
</body>
</html>