function enlarge(filePath) {
	enlargeWin = window.open("popup.htm?path="+filePath, "TG_popup", "scrollbars, resizable, height=615, width=850");
	enlargeWin.focus();
}
function loadImage() {
	var fileName = new String(this.location);
	
	fileName = fileName.slice(fileName.indexOf("=")+1);
	document.tg_image.src = fileName;
}