<!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(172, 0, 426, 499);

context.strokeStyle = '#000000';
context.strokeRect(2, 2, 168, 161);

context.strokeStyle = '#000000';
context.strokeRect(1, 163, 168, 166);

context.strokeStyle = '#000000';
context.strokeRect(2, 329, 167, 170);

context.strokeStyle = '#000000';
context.strokeRect(170, 2, 104, 496);

context.strokeStyle = '#000000';
context.strokeRect(273, 2, 325, 100);

context.strokeStyle = '#000000';
context.strokeRect(275, 103, 322, 65);
</script>
</body>
</html>