<!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(22, 31, 196, 143);

context.strokeStyle = '#000000';
context.strokeRect(303, 25, 283, 70);

context.strokeStyle = '#000000';
context.strokeRect(20, 446, 566, 24);

context.lineWidth = 4;

context.lineWidth = 2;

context.lineWidth = 1;

context.strokeStyle = '#000000';
context.strokeRect(253, 234, 285, 19);

context.strokeStyle = '#000000';
context.strokeRect(34, 206, 551, 188);

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(181, 46);
context.lineTo(395, 227);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(231, 288);
context.lineTo(351, 126);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(481, 176);
context.lineTo(378, 247);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(261, 268);
context.lineTo(292, 161);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(449, 102);
context.lineTo(322, 263);
context.stroke();
context.closePath();

context.strokeStyle = '#000000';
context.beginPath();
context.moveTo(303, 336);
context.lineTo(404, 412);
context.stroke();
context.closePath();
</script>
</body>
</html>