// マウスオーバー
function imgChange(linkName,imgName){
    document.images[linkName].src=imgName;
}


// ウィンドウオープン
function columnOpen(theURL) {
  newWin = window.open(theURL,'column','scrollbars=yes,width=475,height=480,status=yes');
  setTimeout("newWin.focus()", 300);
}

function pressOpen(theURL) {
  newWin = window.open(theURL,'press','scrollbars=yes,width=475,height=480,status=yes');
  setTimeout("newWin.focus()", 300);
}


