<!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, 88, 225, 306);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(224, 99);
context.lineTo(310, 100);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(225, 183);
context.lineTo(312, 184);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(223, 271);
context.lineTo(310, 272);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(225, 361);
context.lineTo(309, 362);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.strokeRect(306, 69, 288, 53);

context.strokeStyle = '#000000';
context.strokeRect(309, 153, 287, 53);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(304, 236);

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

context.strokeStyle = '#000000';
context.strokeRect(309, 232, 286, 55);

context.strokeStyle = '#000000';
context.strokeRect(310, 335, 288, 51);
</script>
</body>
</html>