<html>
<head>
<title>New
Window</title>
</head>
<script language="JavaScript">
function openWindow(name, width,
height) {
var options='width=' + width + ',height=' +
height;
window.open('', name, options);return
true;
}
</script>
</head>
<body>
<a href="Banff-27.html" TARGET="Photo"
onClick="openWindow('Photo',
500, 500)">Banff Springs Hotel</a>
</body>
</html>