<!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(361, 171);

context.lineTo(361, 171);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(339, 235);

context.lineTo(339, 235);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(264, 247);

context.lineTo(264, 247);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(189, 168);

context.lineTo(189, 168);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(260, 90);

context.lineTo(260, 90);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(425, 39);

context.lineTo(425, 39);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(469, 138);

context.lineTo(469, 138);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(448, 245);

context.lineTo(448, 245);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(396, 323);

context.lineTo(396, 323);
context.stroke();
</script>
</body>
</html>