<!--
function newWindow(encoded_url,w,h,x,y,na) {
	self.defaultStatus = "";
	_loc = encoded_url;
	width = w;
	height = h;
	scrnX = x;
	scrnY = y;
	windowName = na;
	window.open(_loc,windowName,"toolbar=no,width=" + width + "," + "height=" + height + ",screenY=" + scrnY + ",screenX=" + scrnX + ",top=" + scrnY + ",left=" + scrnX + ",scrollbars=yes,resizable=yes");
}
//-->

function fullSize(imgFile,w,h,cap) {
	fileName = 'images/' + imgFile;
	width = eval(w + 60);
	height = eval(h + 80);
	scrnX = 40;
	scrnY = 50;
	Caption = cap;
	imgWin=window.open("","full_size","toolbar=no,width=" + width + "," + "height=" + height + ",screenY=" + scrnY + ",screenX=" + scrnX + ",top=" + scrnY + ",left=" + scrnX + ",scrollbars=yes,resizable=yes");
	imgWin.document.open('text/html');
	imgWin.document.writeln('<html>');
 	imgWin.document.writeln('<head>');
 	imgWin.document.writeln('<title>' + Caption + '</title>');
 	imgWin.document.writeln('<link REL=STYLESHEET HREF="css\/bunche.css" TYPE="text\/css">');
 	imgWin.document.writeln('<\/head>');
 	imgWin.document.writeln('<body>');
	imgWin.document.writeln('<form action="" style="text-align:right;"><input type="button" value="Close window" class="small" onClick="JavaScript:window.close();"><\/form>');
 	imgWin.document.writeln('<div align="center">');
 	imgWin.document.writeln('<img src=' + fileName +' alt="' + cap + '">');
	imgWin.document.writeln('<\/div>');  
 	imgWin.document.writeln('<\/body>');
 	imgWin.document.writeln('<\/html>');
 	imgWin.document.close();
}
//-->
