<!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(145, 96, 307, 264);

context.strokeStyle = '#000000';
context.strokeRect(17, 228, 125, 132);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(145, 93);
context.lineTo(301, 2);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(300, 1);
context.lineTo(452, 94);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(272, 257, 49, 101);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(14, 226);
context.lineTo(74, 196);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(141, 225);
context.lineTo(83, 192);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(83, 192);
context.lineTo(66, 200);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(165, 120, 38, 45);

context.strokeStyle = '#000000';
context.strokeRect(359, 117, 43, 46);
</script>
</body>
</html>