/* Popup Window */
function winPop (url,title,width,height) {
	window.open(url,title,'width=' + width + ', height=' + height);
}

/* WINDOW CLOSE */
function winClose () {
	window.close();
}

/* Link */
function btnUrlLink(url){
	window.open(url, '_blank');
}

/* SearchTbl Toggle */
function tglTbls(objId) {
	if(document.getElementById(objId).style.display == 'block'){
			document.getElementById(objId).style.display = 'none';
		}else{
			document.getElementById(objId).style.display = 'block';
	}
}

/* Left-Click Denied */
function btnDntLClick() {
	alert('右クリック「対象をファイルに保存」からダウンロードをお願いします。');
	return false;
}