function show_img(image) {
	var newImg = new Image();
	newImg.src = image;
	curHeight = newImg.height;
	curWidth = newImg.width;
	window.open(image,'mywindow','width='+(curWidth + 5)+',height='+(curHeight+5)+",location='no',scrollbars='no'");
}

