<!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(263, 185, 46, 46);

context.strokeStyle = '#000000';
context.strokeRect(278, 113, 17, 68);

context.strokeStyle = '#000000';
context.strokeRect(195, 201, 64, 14);

context.strokeStyle = '#000000';
context.strokeRect(311, 201, 64, 14);

context.strokeStyle = '#000000';
context.strokeRect(179, 207, 11, 66);

context.strokeStyle = '#000000';
context.strokeRect(176, 115, 15, 89);

context.strokeStyle = '#000000';
context.strokeRect(377, 114, 11, 89);

context.strokeStyle = '#000000';
context.strokeRect(377, 208, 11, 70);

context.strokeStyle = '#000000';
context.strokeRect(314, 265, 59, 12);

context.strokeStyle = '#000000';
context.strokeRect(193, 263, 67, 13);

context.strokeStyle = '#000000';
context.strokeRect(173, 96, 111, 13);

context.strokeStyle = '#000000';
context.strokeRect(286, 95, 119, 16);

context.strokeStyle = '#000000';
context.strokeRect(391, 113, 14, 166);

context.strokeStyle = '#000000';
context.strokeRect(171, 77, 236, 14);

context.strokeStyle = '#000000';
context.strokeRect(150, 76, 16, 201);

context.strokeStyle = '#000000';
context.strokeRect(412, 76, 18, 203);
</script>
</body>
</html>