// JavaScript Document


/* 掲載依頼オープン */
function disp(url){
	window.open(url, "window_name", "width=460,height=650,scrollbars=yes,resizable=yes,status=yes");
}

/* 携帯情報オープン */
function mobile(url){
	window.open(url, "window_name", "width=360,height=360,scrollbars=no,resizable=yes,status=yes");
}

/* 相互リンクオープン */
function link(url){
	window.open(url, "window_name", "width=460,height=450,scrollbars=no,resizable=yes,status=yes");
}

/* お問い合わせオープン */
function question(url){
	window.open(url, "window_name", "width=460,height=450,scrollbars=no,resizable=yes,status=yes");
}

