// -----------------------------
// ヘッダのロールオーバー
// -----------------------------
function changeImage(id, imgPath) {
	document.getElementById(id).src = imgPath;
}

// -----------------------------
// ポップアップウインドウ
// -----------------------------
function openWindow(url,winName,features) {
  window.open(url,winName,features);
}


