<!--サムネイル画像を指定した大きさで開くスクリプトです。これは横長画像用。
function GazouOpenNewWindow(url) 
{
  if (url != '')
  {
    window.open(url, 'gazou', 'width=460,height=360');
  }
}
//-->

<!--サムネイル画像を指定した大きさで開くスクリプトです。これは縦長画像用
function GazouOpen_TateNewWindow(url) 
{
  if (url != '')
  {
    window.open(url, 'gazou', 'width=360,height=460');
  }
}
//-->

<!--グラフのGIF画像を指定した大きさで開くスクリプトです。
function GazouOpen_GurafNewWindow(url) 
{
  if (url != '')
  {
    window.open(url, 'gazou', 'width=650,height=480');
  }
}
//-->

<!--大きな画像を開くスクリプトです。
function GazouOpen_BigNewWindow(url) 
{
  if (url != '')
  {
    window.open(url, 'gazou', 'width=800,height=600');
  }
}
//-->
