//form 初期値

//function delete_default(elem){
//  if(elem.defaultValue == elem.value){
//    elem.value = "";
//  }
//}

// POPUP

function showPopup(showpage) {
wx = 520;
wy = 590;
x = (screen.width - wx) / 2;
y = (screen.height - wy) / 2;
subWin = window.open(showpage,'ikimonoPopWin','width='+wx+',height='+wy+',scrollbars=yes,resizable=yes,left='+x+',top='+y);
subWin.focus();
}

function showPopupSmall(showpage) {
wx = 520;
wy = 350;
x = (screen.width - wx) / 2;
y = (screen.height - wy) / 2;
subWin = window.open(showpage,'','width='+wx+',height='+wy+',scrollbars=yes,resizable=yes,left='+x+',top='+y);
}

function inputPopup(showpage) {
wx = 620;
wy = 750;
x = (screen.width - wx) / 2;
y = (screen.height - wy) / 2;
subWin = window.open(showpage,'','width='+wx+',height='+wy+',scrollbars=yes,resizable=yes,left='+x+',top='+y);
}

function mapPopup(showpage) {
wx = 860;
wy = 840;
x = (screen.width - wx) / 2;
y = (screen.height - wy) / 2;
subWin = window.open(showpage,'','width='+wx+',height='+wy+',scrollbars=yes,resizable=yes,left='+x+',top='+y);
}

function changeOpenerLocation(url) {
if(!window.opener || window.opener.closed){ // メインウィンドウの存在をチェック
	window.alert('メインウィンドウがありません'); // 存在しない場合は警告ダイアログを表示
}
else {
	window.opener.location.href = url; // 存在する場合はページを切りかえる
}

}
