<!-- hide script from old browsers
function openWindow(title,comment,image)
	{
//  The following three statements deactivated due to problems with firefox
//	w_height=screen.availHeight;
//	w_width=screen.availWidth;
//	var win = window.open("",null,"height=" + w_height + ",width=" + w_width + ",left=0,top=0,status=yes,resizable=no,scrollbars=yes");
	var mywin = window.open("", "mywin");
	mywin.document.write('<html><head><title>' + title + '</title></head> ' +
	'\n<body background="../images/background.gif"> ' +
	'\n<H1 align="center">' + title + ' - ' + comment +'</H1> ' +
	'\n<p align="center"><I>Please click on image to close this window, when finished.</I></P>' +
	'\n<p align="center"><img alt="Click image to close window" onClick="self.close()" onMouseOver="style.cursor=\'pointer\'" border="2" src="images/' + image + '"></p>' +
	'\n</body></html>');
	mywin.document.close();
	mywin.focus();
	} //EOFn

function openWindowP(title,comment,image)
	{
//	w_height=screen.availHeight;
//	w_width=screen.availWidth;
//	var win = window.open("",null,"height=" + w_height + ",width=" + w_width + ",left=0,top=0,status=yes,resizable=no,scrollbars=yes");
	var mywin = window.open("","mywin");
	mywin.document.write('<html><head><title>' + title + '</title></head> ' +
	'\n<body background="../images/parchment1.gif"> ' +
	'\n<H1 align="center">' + title + ' - ' + comment +'</H1> ' +
	'\n<p align="center"><I>Please click on image to close this window, when finished.</I></P>' +
	'\n<p align="center"><img alt="Click image to close window" onClick="self.close()" onMouseOver="style.cursor=\'pointer\'" border="0" src="images/' + image + '"></p>' +
	'\n</body></html>');
	mywin.document.close();
	mywin.focus();
	} //EOFn

// end hiding script from old browsers -->





