// ウインドウオープン用スクリプト
// ver.1.01

      function window1(win1) { 
      win=window.open(win1,"new","toolbar=1,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=440,height=440");
      } 

      function window2(win2) { 
      win=window.open(win2,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=565,height=500");
      } 

      function window3(win3) { 
      win=window.open(win3,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=350,height=280");
      } 

      function window4(win4) { 
      win=window.open(win4,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1,width=520,height=400");
      } 
	  
			   function window5(win5) { 
      win=window.open(win5,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=340,height=600");
      } 
	  
      function window6(win6) { 
      win=window.open(win6,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=620,height=640");
      }
	  
      function winOpen(url, win, width, height) { 
      openWindow = window.open(url,win,'menubar,scrollbars,resizable,width=' + width + ',height=' + height);
			openWindow.focus();
      } 
						
//ウインドウクローズ用スクリプト
	function closewindow() {
		close()
	}