
//登録者名別ウィンドウ表示
function openContePage(file_num){
	file_name = 'http://eco-anzen-drive-club.jp/index.php?type=conte_user&action='+file_num;
	window.open(file_name,
	"userwindow","width=550,height=500,top=200,left=200,status=yes,resizable=yes,scrollbars=yes");
}

//登録、退会ウィンドウ表示
function openUserRegist(type,act){
	file_name = 'https://eco-anzen-drive-club.jp/index.php?type='+type+'&action='+act;
	window.open(file_name,
	"userwindow","width=550,height=500,top=200,left=200,status=yes,resizable=yes,scrollbars=yes");
}

//会社・団体＆個人登録ページからトップへ戻るボタン
function topLink(){
	location.href = '/';
}