/* ロードスクリプト */
window.onload=function(){
/* フッタ部ポップアップ適用 */
	for (var i=0;i<document.getElementById("privacy").getElementsByTagName("a").length;i++){
		if(document.getElementById("privacy").getElementsByTagName("a")[i].target=="popup"){
				document.getElementById("privacy").getElementsByTagName("a")[i].onclick=function(){
				openPopup(this.href);
				return false;
			}
		}
	}
}

/* ウインドウオープン */
function openPopup(url){
	var option ="width=500,height=510,scrollbars=yes,menubar=no,toolbar=no,location=no,status=no";
	window.open(url,"popup",option);
	return false;
}
