<!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(145, 38);

context.lineTo(146, 38);
context.stroke();

context.lineTo(146, 40);
context.stroke();

context.lineTo(151, 45);
context.stroke();

context.lineTo(153, 47);
context.stroke();

context.lineTo(169, 58);
context.stroke();

context.lineTo(184, 67);
context.stroke();

context.lineTo(201, 74);
context.stroke();

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

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

context.lineTo(265, 85);
context.stroke();

context.lineTo(279, 85);
context.stroke();

context.lineTo(294, 85);
context.stroke();

context.lineTo(305, 85);
context.stroke();

context.lineTo(314, 85);
context.stroke();

context.lineTo(324, 85);
context.stroke();

context.lineTo(331, 85);
context.stroke();

context.lineTo(337, 85);
context.stroke();

context.lineTo(344, 86);
context.stroke();

context.lineTo(350, 86);
context.stroke();

context.lineTo(364, 86);
context.stroke();

context.lineTo(376, 86);
context.stroke();

context.lineTo(385, 84);
context.stroke();

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

context.lineTo(400, 82);
context.stroke();

context.lineTo(403, 82);
context.stroke();

context.lineTo(405, 82);
context.stroke();

context.lineTo(406, 81);
context.stroke();

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

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

context.lineTo(407, 77);
context.stroke();

context.lineTo(407, 74);
context.stroke();

context.lineTo(406, 70);
context.stroke();

context.lineTo(406, 70);
context.stroke();

context.lineTo(406, 70);
context.stroke();

context.lineTo(406, 70);
context.stroke();

context.strokeStyle = '#000000';
context.strokeRect(149, 125, 245, 95);
</script>
</body>
</html>