﻿// 申込登録ポップアップ
function popup(url){
  window.open(url, 'popup', 'width=804,height=604,scrollbars=0,resizable=1,locationbar=0,status=1,toolbar=0');
}
// おみくじポップアップ
function omiku(url){
  window.open(url, 'omiku', 'width=804,height=498,scrollbars=0,resizable=1,locationbar=0,status=1,toolbar=0');
}

// キャンペーンポップアップ
function popupCpn(url){
  window.open(url, 'cpn', 'width=711,height=423,scrollbars=1,resizable=1,locationbar=0,status=1,toolbar=0');
}

// レイヤー非表示 
function lyHid(myID){
	document.getElementById(myID).style.visibility = 'hidden';
}

