<!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(290, 65);

context.lineTo(289, 64);
context.stroke();

context.lineTo(289, 64);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(211, 196);

context.lineTo(211, 196);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(226, 284);

context.lineTo(226, 284);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(366, 307);

context.lineTo(366, 307);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(473, 159);

context.lineTo(473, 159);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(143, 154);

context.lineTo(143, 154);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(110, 242);

context.lineTo(110, 242);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(89, 357);

context.lineTo(89, 357);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(78, 430);

context.lineTo(78, 430);
context.stroke();

context.lineTo(79, 430);
context.stroke();

context.lineTo(79, 430);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(263, 456);

context.lineTo(268, 454);
context.stroke();

context.lineTo(270, 452);
context.stroke();

context.lineTo(274, 449);
context.stroke();

context.lineTo(274, 449);
context.stroke();
</script>
</body>
</html>