<!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.lineWidth = 4;

context.strokeStyle = '#000000';
context.strokeRect(105, 67, 44, 46);

context.strokeStyle = '#000000';
context.strokeRect(201, 66, 41, 49);

context.strokeStyle = '#000000';
context.strokeRect(301, 65, 44, 55);

context.strokeStyle = '#000000';
context.strokeRect(103, 143, 46, 44);

context.strokeStyle = '#000000';
context.strokeRect(194, 146, 46, 41);

context.strokeStyle = '#000000';
context.strokeRect(293, 145, 61, 46);

context.strokeStyle = '#000000';
context.strokeRect(102, 216, 49, 39);

context.strokeStyle = '#000000';
context.strokeRect(194, 218, 47, 37);

context.strokeStyle = '#000000';
context.strokeRect(293, 223, 50, 38);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(127, 80);
context.lineTo(127, 106);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(208, 76);

context.lineTo(208, 76);
context.stroke();

context.lineTo(208, 76);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(213, 80);

context.lineTo(213, 80);
context.stroke();

context.lineTo(213, 80);
context.stroke();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(211, 79);
context.lineTo(232, 101);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(309, 90);
context.lineTo(337, 90);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(126, 153);
context.lineTo(126, 179);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(202, 158);
context.lineTo(229, 175);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(306, 169);
context.lineTo(335, 169);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(125, 227);
context.lineTo(125, 247);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(205, 230);
context.lineTo(226, 243);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(302, 243);
context.lineTo(334, 243);
context.stroke();
context.closePath();
</script>
</body>
</html>