/*********************************************************************

  i-shot_view.js

  start  2003/12/01
  update 2004/01/01

  Copyright (c) 2003,2004 Kouichirou Urano <webmaster@mk-square.com>

  --------------------------------------------------------------------
  i-shotビューアオープン

**********************************************************************/
function ishot_view(title, comment, image) {
    view_image.title.value   = title;
    view_image.message.value = comment;
    view_image.image.value   = image;
    window.open('i-shot_viewer.html',
                'ishot_viewer',
                'scrollbars,resizable,height=300,width=300');
}

function ishot_view_lsize(title, comment, image) {
    view_image.title.value   = title;
    view_image.message.value = comment;
    view_image.image.value   = image;
    window.open('i-shot_viewer.html',
                'ishot_viewer',
                'scrollbars,resizable,height=520,width=400');
}

function ishot_close() {
    self.window.close();
}
