// 윈도우 새로 띄우기
// URL : 경로
// NAME : 윈도우 이름
// ATTRIBUTE : 속성값(left=0, top=0, toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=0, height=0)
function newWindowOpen(url, name, attribute)
{
    windowName = window.open(url, name, attribute);
    windowName.focus();
}


function ShowTab(id) {
	document.getElementById("tr_01").style.display = "none";
	document.getElementById("tr_02").style.display = "none";
	document.getElementById("tr_03").style.display = "none";
	document.getElementById("tr_" + id).style.display = "";
}
