objW=940;
objH=670;
os=navigator.userAgent.toUpperCase();
browser=navigator.appName.toUpperCase();
function getPos(){
 if(browser.indexOf("EXPLORER")>=0){
  w=document.body.clientWidth;
  h=document.documentElement.clientHeight;
  if(os.indexOf("MAC")<0){
   setPos();
  }else{
   w=window.innerWidth;
   h=window.innerHeight;
   setPos();
  }
 }
}
function setPos(){
 posX=(w-objW)/2;
 posY=(h-objH)/2;
 if(posX<0){
  posX=0;
 }
 if(posY<0){
  posY=0;
 }
 document.getElementById("wrapper").style.position="absolute";
 document.getElementById("wrapper").style.top=posY+"px";
 document.getElementById("wrapper").style.left=posX+"px";
}
function Center(){
 getPos();
 setInterval("getPos()",500);
}
function wOpen(Num){
 var Height=600;
 var URL=""
 if(Num<1){
  //プライバシーポリシー
  URL="privacypolicy/";
 }else if(Num<2){
  //ご利用にあたって
  URL="sitepolicy/";
 }else if(Num<3){
  //メール会員登録・変更・退会
 //URL="sitepolicy/";
  URL="https://www.nominakama.com/magazine/";
 }else if(Num<4){
  //催し物フォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=b31cc99119c240dcfed39b910979b15a";
 }else if(Num<5){
  //おもたせフォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=290aba3c067606d652bd41e374cbf634";
 }else if(Num<6){
  //タイピングゲームフォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=12d3dee8adf5bc8d118de273ce332f88";
 }else if(Num<7){
  //ぎゃらりぃフォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=e728a377dd6f2fc6744cb00d26f37914";
 }
 var subWin=window.open(URL,'subWin','toolbar=yes,resizable=yes,scrollbars=yes,menubar=yes,location=yes,status=yes,width=700,height='+Height);
 subWin.focus();
}
