// À©µµ¿ì »õ·Î ¶ç¿ì±â
// 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 = "";
}
