// ウインドウオープンスクリプト用スクリプト
// 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");
      } 

      function window6(win6) { // QBハウスマッチデー・キャンペーン
  			window.open(win6,"SWindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=418,height=450");
      }  


      function window5(win5) { // レディース
	if(screen.availHeight<800){
	w=screen.availWidth/2;
	h=screen.availHeight/2;
      win=window.open(win5,"new5","toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width="+w+",height="+h);
	}
	else{
	win=window.open(win5,"new5","toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=1,width=760,height=690");
	}
      }

