// Copyright 2000 Wired Destinations Co., Ltd.

  function openWindow(myLink,windowName)
  {
  if(! window.focus)return;
  var myWin=window.open("",windowName,"height=450,width=520,dependent=yes,scrollbars=yes");
  myWin.focus();
  myLink.target=windowName;
  }

