function large(url, vertical){
	width = vertical ? 400 : 600;
	height = vertical ? 600 : 400;
	var w = open('','displayWindow','width=' + width + ',height=' + height + ',status=no,resizable=yes,toolbar=no,scrollbars=no,menubar=no');
	w.document.open();
	w.document.write('<html><head><title>Large picture</title></head><body marginwidth="0" marginheight="0" leftmargin="0" topmargin="0"><img src="' + url + '" /></body></html>');
	w.document.close();
}