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;
 if(Num<1){
  //プライバシーポリシー
  URL="privacypolicy/";
 }else if(Num<2){
  //ご利用にあたって
  URL="sitepolicy/";
 }else if(Num<3){
  //メール会員登録・変更・退会
  URL="https://www.nominakama.com/magazine/";
  Height=500;
 }else if(Num<4){
  //催し物フォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=2fc0353237245533395d766c3cd53dd3";
 }else if(Num<5){
  //おもたせフォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=8e8a433f4b56384f2124cdc7cac0f69f";
 }else if(Num<6){
  //タイピングゲームフォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=57fbf8f6aac97e9a355c9c92d8650d34";
 }else if(Num<7){
  //ぎゃらりぃフォーム
  URL="https://www.nominakama.com/sys/enq/index.php?eid=6c15f77d57589fa44393001eaae80807";
 }
 subWin=window.open(URL,'subWin','toolbar=yes,resizable=yes,scrollbars=yes,menubar=yes,location=yes,status=yes,width=700,height='+Height);
 subWin.focus();
}