<!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 = '#ADADAD';
context.strokeRect(269, 399, 21, 82);

context.strokeStyle = '#ADADAD';
context.strokeRect(262, 360, 34, 9);

context.strokeStyle = '#212121';
context.strokeRect(268, 400, 23, 18);

context.strokeStyle = '#212121';
context.strokeRect(272, 388, 15, 12);

context.strokeStyle = '#BD6213';
context.strokeRect(270, 370, 19, 15);

context.strokeStyle = '#BD6213';
context.strokeRect(265, 438, 4, 21);

context.strokeStyle = '#212121';
context.strokeRect(268, 418, 23, 6);

context.strokeStyle = '#212121';
context.strokeRect(268, 411, 23, 6);

context.strokeStyle = '#212121';
context.strokeRect(268, 404, 23, 6);

context.strokeStyle = '#26AD21';
context.strokeRect(273, 7, 13, 351);

context.strokeStyle = '#26AD21';
context.strokeRect(277, 10, 2, 344);

context.strokeStyle = '#26AD21';
context.strokeRect(280, 9, 5, 347);
</script>
</body>
</html>