/* ウインドウオープン  */

/* 640*480 */
function open640(theURL) { 
  newWin = window.open(theURL,'alter_company','scrollbars=no,width=740,height=600,status=no');
  setTimeout("newWin.focus()", 300);
}

/* 320*240 */
function open320(theURL) { 
  newWin = window.open(theURL,'alter_pack','scrollbars=no,width=500,height=380,status=no');
  setTimeout("newWin.focus()", 300);
}

