function showHide(ID, Link, htmlObj) {
    ContentDivID = ('content_' + (ID));
    LinkDivID = ('link_' + (ID));
    TestDivID = ('test_' + (ID));
    Test2DivID = ('test2_' + (ID));
    if( document.getElementById ) {
        if( document.getElementById(ContentDivID).style.display ) {
            if( Link != 0 ) {
                document.getElementById(ContentDivID).style.display = "block";
                document.getElementById(Test2DivID).style.display = "block";
                document.getElementById(LinkDivID).style.display = "none";
                document.getElementById(TestDivID).style.display = "none";
                htmlObj.blur();
            } else {
                document.getElementById(ContentDivID).style.display = "none";
                document.getElementById(Test2DivID).style.display = "none";
                document.getElementById(LinkDivID).style.display = "block";
                document.getElementById(TestDivID).style.display = "block";
            }
        } else {
            location.href = Link;
            location.href = Test;
            return true;
        }
    } else {
        location.href = Link;
        location.href = Test;
        return true;
    }
}




function ChDsp2(strShow,strHidden){
    var obj='';
    obj=document.all && document.all(strShow) || document.getElementById && document.getElementById(strShow);
    obj.style.display = "block";
    obj=document.all && document.all(strHidden) || document.getElementById && document.getElementById(strHidden);
    obj.style.display = "none";
}




function popWincar(url,width,height){
	win = window.open(url,"new","toolbar=no,location=no,scrollbars=no,status=no,menubar=no,resizable=no,width=" + width + ",height=" + height + "\"");
	win.focus();
}




function popupwin(url){
	popwin = window.open(url,"Globis","toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=570,height=700");

	popwin.focus();

}



function checkExpand(ch) {
	closeAll(ch);
    var obj=document.all && document.all(ch) || document.getElementById && document.getElementById(ch);
    if(obj && obj.style) obj.style.display=
    "none" == obj.style.display ?"" : "none"
}

function closeAll(ch_ignore) {
	var ch_list = new Array();
	var ch;
	var i;
	ch_list=Array(
		'side-basic','side-applied','side-development','side-student01','side-student02','side-student03','side-student04','side-student05','side-student06','side-student07','side-student08','side-student09','side-student10','side-student11','side-curriculum01','side-curriculum02','side-curriculum03','side-curriculum04','side-curriculum05','side-curriculum06','side-curriculum07','side-curriculum08','side-curriculum09','side-curriculum10','side-curriculum11'
	);
	for(i=0;i<ch_list.length;i++){
		ch=ch_list[i];
		if(ch != ch_ignore){
		    var obj=document.all && document.all(ch) || document.getElementById && document.getElementById(ch);
		    if(obj && obj.style){
				obj.style.display="none";
			}
		}
	}
}

