/*********************************************************************************************************
onload function
**********************************************************************************************************/
function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != 'function') {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}
// ¸ÞÀÎ ÅÇ °Ô½ÃÆÇ
function mainTabShowHide(param,showElement){
if(!document.getElementsByTagName) return false;
if(!document.getElementById) return false;
if(!document.getElementById("mainBoard")) return false;
var mainBoard = document.getElementById("mainBoard");
var subLi = mainBoard.getElementsByTagName("li");
var subBoard = mainBoard.getElementsByTagName("table");
tabimg = new Array(4);
tabimg[0] = document.getElementById("tabImg01");
tabimg[1] = document.getElementById("tabImg02");
tabimg[2] = document.getElementById("tabImg03");
tabimg[3] = document.getElementById("tabImg04");
for(var i=0; i