function swapimg(obj) {
	if(obj.src.match(/_f2.(jpg|gif|png)/)) {
		obj.src = obj.src.replace('_f2', '');
	} else {
		obj.src = obj.src.replace(/\.(jpg|gif|png)$/, "_f2.$1");
	}
}

function CheckText() {
	if (document.getElementById('SearchText').value) {
		return true;
	} else {
		alert('検索文字列を入力してください');
		return false;
	}
}
