<!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(17, 16, 568, 473);

context.strokeStyle = '#000000';
context.strokeRect(31, 30, 538, 440);

context.strokeStyle = '#000000';
context.strokeRect(56, 49, 477, 393);

context.strokeStyle = '#000000';
context.strokeRect(82, 66, 423, 353);

context.strokeStyle = '#000000';
context.strokeRect(100, 84, 384, 315);

context.strokeStyle = '#000000';
context.strokeRect(123, 103, 341, 279);

context.strokeStyle = '#000000';
context.strokeRect(143, 121, 300, 244);

context.strokeStyle = '#000000';
context.strokeRect(158, 137, 267, 209);

context.strokeStyle = '#000000';
context.strokeRect(185, 159, 150, 163);

context.strokeStyle = '#000000';
context.strokeRect(246, 197, 74, 89);
</script>
</body>
</html>