// JavaScript Document
<!--
function openWin(url,name,option)
{
  var newWin = window.open(url,name,option);
  newWin.focus();
}
function openPDFmg1(){
 mySelect = document.magForm.pearldayori.selectedIndex;
 window.open(document.magForm.pearldayori.options[mySelect].value);
}
function openPDFmg2(){
 mySelect = document.magForm.senboukyou.selectedIndex;
 window.open(document.magForm.senboukyou.options[mySelect].value);
}
//-->