<!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 = '#FF2B24';
context.strokeRect(51, 261, 321, 188);

context.strokeStyle = '#FF2B24';
context.strokeRect(164, 334, 71, 112);

context.strokeStyle = '#FF2B24';
context.strokeRect(163, 311, 178, 23);

context.strokeStyle = '#FF2B24';
context.beginPath();
context.moveTo(298, 334);

context.lineTo(298, 334);
context.stroke();

context.strokeStyle = '#FF2B24';
context.beginPath();
context.moveTo(303, 333);

context.lineTo(302, 333);
context.stroke();

context.lineTo(302, 333);
context.stroke();

context.strokeStyle = '#FF2B24';
context.beginPath();
context.moveTo(295, 335);

context.lineTo(295, 335);
context.stroke();

context.strokeStyle = '#FF2B24';
context.beginPath();
context.moveTo(294, 333);

context.lineTo(294, 336);
context.stroke();

context.strokeStyle = '#FF2B24';
context.strokeRect(235, 334, 58, 65);

context.strokeStyle = '#FF2B24';
context.strokeRect(294, 334, 48, 65);

context.strokeStyle = '#FF2B24';
context.strokeRect(62, 304, 88, 25);

context.strokeStyle = '#FF2B24';
context.strokeRect(110, 329, 40, 59);

context.strokeStyle = '#FF2B24';
context.beginPath();
context.moveTo(112, 384);

context.lineTo(109, 384);
context.stroke();

context.lineTo(107, 384);
context.stroke();

context.strokeStyle = '#FF2B24';
context.beginPath();
context.moveTo(63, 328);

context.lineTo(63, 328);
context.stroke();

context.strokeStyle = '#FF2B24';
context.strokeRect(62, 328, 51, 60);
</script>
</body>
</html>