// 小窓ポップアップ

function openwin(url) {
	newWin = window.open(url,'win','width=500,height=520');
	newWin.focus();
}