function showimg(imgsrc){
	var img1 = new Image();
	img1.src = imgsrc;
	imgw = 300;
	imgh = 300;
	window.open(imgsrc,"Image","width="+imgw+",height="+imgh+",resizable=yes");
}

