//ウインドウオープン
function openWin(url,name,property) {
	newwin =window.open(url,name,property);
	newwin.focus();
}

//mapオープン
function mapWin() {
	newwin =window.open('http://www.hikkoshihikaku.com/info/map.html','map','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=450,height=690,left=0,top=0');
	newwin.focus();
}

//各社オープン（for StepEngine）
function comWin(url) {
	newwin =window.open(url,'com','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=600,height=600,left=0,top=0');
	newwin.focus();
}

//各社オープン（for Promo）
function comsWin(url) {
	newwin =window.open(url,'coms','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=560,height=550,left=0,top=0');
	newwin.focus();
}

//ご意見＆ご質問オープン
function cntWin() {
	newwin =window.open('https://www.hchikaku.com/step/hchikaku/contact.htm','cnt','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=500,height=440,left=0,top=0');
	newwin.focus();
}

//利用規約
function termWin() {
    newwin =window.open('http://www.webcrew.co.jp/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();
}

//会員規約
function memberWin() {
	newwin =window.open('http://www.webcrew.co.jp/info/member_pop.html','member','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=500,height=500,left=0,top=0');
	newwin.focus();
}

//プライバシーポリシーオープン
function privacyWin() {
    newwin
=window.open('http://www.webcrew.co.jp/info/privacy_pop.html','privacy','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=500,height=500,left=0,top=0');
    newwin.focus();
}

//topicオープン
function topicWin(url) {
	newwin =window.open(url,'topics','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=450,height=400,left=0,top=0');
	newwin.focus();
}

//ランクオープン
function rankWin(url) {
	newwin =window.open('/contents/rank_pop.html','rank','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=520,height=500,left=0,top=0');
	newwin.focus();
}

//ブラウザオープン
function brwsWin(url) {
	newwin =window.open(url,'exp','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=550,height=400,left=0,top=0');
	newwin.focus();
}

//ブックマーク
function bookmark() {
	if(navigator.userAgent.indexOf("MSIE") > -1){
		window.external.AddFavorite('http://www.hchikaku.com','ハウスクリーニング比較.com');
	} else if(navigator.userAgent.indexOf("Firefox") > -1){
		window.sidebar.addPanel('ハウスクリーニング比較.com','http://www.hchikaku.com','');
	}
}

//print
function ticketPrint() {
	window.print();
}
