<!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(0, 414, 599, 85);

context.strokeStyle = '#000000';
context.strokeRect(0, 259, 43, 153);

context.strokeStyle = '#000000';
context.strokeRect(43, 297, 44, 116);

context.strokeStyle = '#000000';
context.strokeRect(87, 312, 267, 101);

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

context.lineTo(355, 413);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(355, 410);

context.strokeStyle = '#000000';
context.strokeRect(353, 246, 78, 166);

context.strokeStyle = '#000000';
context.strokeRect(431, 309, 45, 105);

context.strokeStyle = '#000000';
context.strokeRect(478, 228, 119, 184);

context.strokeStyle = '#FFFFFF';
context.beginPath();
context.moveTo(462, 165);

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

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

context.lineTo(479, 197);
context.stroke();
</script>
</body>
</html>