function ShowImage(img_url) {
    ImageWindow = window.open(img_url, "ImageWindow", "width=600, height=400");
    ImageWindow.focus();
}

