// JavaScript Document

function update_sig_range_txt (div_to_show) {
	
	for (i=0;i<=9;i++) {
		if (i==div_to_show) {
			document.getElementById('sig_range'+i).className = 'range_txt_show';
		} else {
			document.getElementById('sig_range'+i).className = 'range_txt';
		}
	}
	
}

function photoPopUp(filename, imgWidth, imgHeight) {
	window.open("gallery/" + filename + ".htm", "ukgoimg", "height=" + (imgHeight + 50) + ",width=" + (imgWidth) + ",hotkeys=no,directories=no,menubar=no,location=no,personalbar=no,resizable=yes,scrollbars=no,status=no,titlebar=no,toolbar=no");
}