// ウインドウオープンスクリプト用スクリプト
// ver.1.01
// Sachiko Nakai

      function window1(win1) { // modeで使用
      win=window.open(win1,"new","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=340,height=400");
      win.focus();  
      } 

      function window2(win2) { // スタジオで使用
      win=window.open(win2,"new2","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=500,height=450");
      } 
	  
      function window3(win2) { // 年末年始で使用
      win=window.open(win2,"new2","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=400,height=300");
      } 

      function winOpen(url, win, width, height) { 
      openWindow = window.open(url,win,'menubar,scrollbars,resizable,width=' + width + ',height=' + height);
			openWindow.focus();
      } 

      function winOpen2(url, win, width, height) { 
      openWindow = window.open(url,win,'directries=no,location=no,menubar=no,,scrollbars=no,status=no,toolbar=no,,resizable=no,width=' + width + ',height=' + height);
			openWindow.focus();
      } 

      function winOpen3(url, win, width, height) { 
      openWindow = window.open(url,win,'directries=no,location=no,menubar=yes,,scrollbars=yes,status=yes,toolbar=yes,,resizable=yes,width=' + width + ',height=' + height);
			openWindow.focus();
      } 


	function closewindow() {
		window.top.close()
	}

      function window4(win4) { // レディース
      win=window.open(win4,"new4","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=500,height=450");
      } 

