///// for promoページ/////

//各社オープン
function comsWin(url) {
	newwin =window.open(url,'coms','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=630,height=550,left=0,top=0');
	newwin.focus();
}

//コンテンツオープン
function contentsWin(url) {
	newwin =window.open(url,'contents','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=700,height=600,left=0,top=0');
	newwin.focus();
}

//利用規約
function termWin() {
	newwin =window.open('https://www.hikkoshihikaku.com/info/terms_pop.html','terms','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=520,height=500,left=0,top=0');
	newwin.focus();
}

