// index.htmlの悩み解決詳細画面
function Detail(url){
	newwindow=window.open("","newwin","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width=600,height=500");
	newwindow.focus();
	newwindow.location.href=url;
}

// 大画面用拡大
function Kakudai(url){
	newwindow=window.open("","newwin","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,width=800,height=550");
	newwindow.focus();
	newwindow.location.href=url;
}


