function OpenImage(imagename) {
    img = new Image();
    img.src = imagename;
	window.open("image_display.html?"+imagename,"","scrollbars=no,width="+img.width+",height="+img.height);
}


