<!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(5, 4, 589, 101);
context.strokeStyle = '#000000';
context.strokeRect(15, 114, 574, 96);
context.strokeStyle = '#000000';
context.strokeRect(9, 216, 575, 146);
context.strokeStyle = '#000000';
context.strokeRect(9, 373, 579, 104);
context.strokeStyle = '#000000';
context.strokeRect(7, 400, 592, 89);
context.strokeStyle = '#000000';
context.strokeRect(2, 246, 591, 35);
context.strokeStyle = '#000000';
context.strokeRect(6, 71, 577, 86);
context.strokeStyle = '#000000';
context.strokeRect(9, 7, 577, 32);
context.strokeStyle = '#000000';
context.strokeRect(9, 14, 579, 317);
context.strokeStyle = '#000000';
context.strokeRect(10, 313, 576, 128);
context.strokeStyle = '#000000';
context.strokeRect(10, 174, 586, 267);
context.strokeStyle = '#000000';
context.strokeRect(10, 127, 581, 70);
context.strokeStyle = '#000000';
context.strokeRect(9, 175, 576, 274);
context.strokeStyle = '#000000';
context.strokeRect(8, 305, 585, 170);
context.strokeStyle = '#000000';
context.strokeRect(6, 57, 578, 373);
</script>
</body>
</html>