// ウインドウオープン用スクリプト
// ver.1.01

      function window1(win1) { 
      win=window.open(win1,"new","toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=550,height=650");
      } 

      function window2(win2) { 
      win=window.open(win2,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=570,height=600");
      } 

      function winOpen(url, win, width, height) { 
      openWindow = window.open(url,win,'menubar,scrollbars,resizable,width=' + width + ',height=' + height);
			openWindow.focus();
      } 
						

      function window4(win4) { 
      win=window.open(win4,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=700,height=650");
      } 


      function window5(win5) { 
      win=window.open(win5,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=700,height=520");
      } 

      function window6(win6) { 
      win=window.open(win6,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=550,height=680");
      } 
	  
//ウインドウクローズ用スクリプト
	function closewindow() {
		close()
	}