// JavaScript Document
		
		function enlarge(x) {
//	alert(x);
		imgsrc = document.getElementById("popup").src;
		var re = /^(.*)\/(.*)\.jpg$/;
		imgsrc = imgsrc.replace(re,"$2");
//		window.alert(imgsrc);
		imgheight = document.getElementById("popup").height ;
		imgwidth = document.getElementById("popup").width;
		imgheight = Math.round(imgheight * 1.5) ;
		imgwidth = Math.round(imgwidth * 1.5) ;
		var re = /^(.*)&IXenlarge(.*)$/;
		temp = x.replace(re,"$1");
		temp = temp + "&IXenlarge="+imgsrc
//		window.alert(temp);
		window.location.href(temp);
		}
		
		
		function popwin(x) {
//		window.alert(x);
		imgsrc = document.getElementById("popup").src;
		var re = /^(.*)\/(.*)\.jpg$/;
		imgsrc = imgsrc.replace(re,"$2");
//		window.alert(imgsrc);
		imgheight = document.getElementById("popup").height ;
		imgwidth = document.getElementById("popup").width;
		imgheight = Math.round(imgheight * 1.5) ;
		imgwidth = Math.round(imgwidth * 1.5) ;
		x = x + "&IXimgsrc="+imgsrc+"&IXimgheight="+imgheight+ "&IXimgwidth="+imgwidth;
//    	window.alert(x);

		aa= window.open(x,'LTMTopic','left=300,top=80,width=490,height=640,menubar=no,scrollbars=yes,status=no,resizable=no,toolbar=no');
		aa.focus()
		}