<!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(41, 59, 514, 398);

context.strokeStyle = '#000000';
context.strokeRect(305, 451, 1, 2);

context.strokeStyle = '#000000';
context.strokeRect(304, 340, 69, 112);

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(42, 60);

context.lineTo(55, 72);
context.stroke();

context.lineTo(87, 101);
context.stroke();

context.lineTo(126, 136);
context.stroke();

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

context.lineTo(174, 178);
context.stroke();

context.lineTo(181, 185);
context.stroke();

context.lineTo(181, 185);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(43, 61);

context.lineTo(43, 60);
context.stroke();

context.lineTo(49, 62);
context.stroke();

context.lineTo(69, 75);
context.stroke();

context.lineTo(93, 97);
context.stroke();

context.lineTo(121, 118);
context.stroke();

context.lineTo(144, 134);
context.stroke();

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

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

context.lineTo(207, 172);
context.stroke();

context.lineTo(212, 175);
context.stroke();

context.lineTo(214, 176);
context.stroke();

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

context.lineTo(249, 205);
context.stroke();

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

context.lineTo(304, 238);
context.stroke();

context.lineTo(320, 249);
context.stroke();

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

context.lineTo(327, 258);
context.stroke();

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

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

context.lineTo(332, 260);
context.stroke();
</script>
</body>
</html>