/* Copyright (c)2000 Louis Jean-Richard, Switzerland. All Rights Reserved. */
//	-----------------------------------
function                                 Quoted(s){
	return '"' + s + '"'
}
//	-----------------------------------
function 					ShowPicture(name, altText, width, height)
{
var	imageURL = "../aa/nature/" + name + ".jpg"
var	picture = new Image()
	picture.src = imageURL
var	output = "<html><header><title>" + altText + "</title><\/header><body>"
	output += "<img src=" + Quoted(imageURL)
	output += " alt=" + Quoted(altText)
	output += " BORDER=0><\/body><\/html>"
	width += 16
	height += 16
var	windowParameters = "width=" + width
	windowParameters += ",height=" + height
	windowParameters += ",dependent=yes,scrollbars=no"
	ClosePicture()
	pictWindow = window.open("", "ShowPicture", windowParameters )
	pictWindow.document.open()
	pictWindow.document.write(output)
	pictWindow.document.close()
}
var	pictWindow = null
//	-----------------------------------
function 					ClosePicture()
{
	if ((pictWindow != null)  && (!pictWindow.closed)) {
		pictWindow.close()
	}
}
