<!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.beginPath();
context.moveTo(90, 181);

context.lineTo(855, 236);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(413, 191);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(190, 44);

context.lineTo(190, 44);
context.stroke();

context.lineTo(190, 44);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(238, 149);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(599, 283);

context.lineTo(597, 283);
context.stroke();

context.lineTo(597, 283);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(56, 209);

context.lineTo(98, 222);
context.stroke();

context.lineTo(98, 222);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(278, 99);

context.lineTo(275, 131);
context.stroke();

context.lineTo(460, 83);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(459, 82);

context.lineTo(434, 113);
context.stroke();

context.lineTo(434, 113);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(134, 66, 65, 85);

context.strokeStyle = '#000000';
context.strokeRect(274, 143, 86, 41);

context.strokeStyle = '#000000';
context.strokeRect(316, 179, 71, 42);

context.strokeStyle = '#000000';
context.strokeRect(307, 112, 129, 51);
</script>
</body>
</html>