// ウインドウ設定
self.name='segawin';
window.onload = function() {
	self.focus();
}

// フォーム テキストボックスフォーカス時カラー変更
function changeInputBgc(obj, bgStatus) {
	if(bgStatus == '0') {
		obj.style.backgroundColor = "#FFFFFF";
	} else if(bgStatus == '1') {
		obj.style.backgroundColor = "#FFFFCC";
	}
}

// 小窓
function openWin(url,width,height){
	window.open(url,'newwin','toolbar=no,location=no,status=no,menubar=no,scrollbar=no,width=' + width + ' ,height='+ height);
}