function toggle(e) { 
	if (e.style.display == "none") { e.style.display = ""; }
	else { e.style.display = "none"; }	
}

function layer_toggle(obj) { 
        if (obj.style.display == 'none') obj.style.display = 'block';
        else if (obj.style.display == 'block') obj.style.display = 'none';
}

function sNh_toggle(objh, objs) {
        if (objh.style.display == 'none') {
		objh.style.display = 'block';
		objs.style.display = 'none';
	} else {
		objh.style.display = 'none';
		objs.style.display = 'block';
	}
}

function zb_formresize(obj) { 
	obj.rows += 3; 
}


function on_focus(ggerzer) { 
	ggerzer.style.backgroundColor='#F2F8F8';
	ggerzer.style.color='#0056E6';
}

function on_blur(ggerzer) { 
	ggerzer.style.backgroundColor='';
	ggerzer.style.color='';
}

function M_over(ggerzer) { 
	ggerzer.style.color='#1e90ff';
}

function M_out(ggerzer) { 
	ggerzer.style.color='';
}

function M_overBG(ggerzer) { 
	ggerzer.style.backgroundColor='#E9E9E7';
}

function M_outBG(ggerzer) { 
	ggerzer.style.backgroundColor='';
}

function close_Layer(ggerzer) { 
	ggerzer.style.display = "none";
}

function open_Layer(ggerzer) { 
	ggerzer.style.display = "inline";
}

function copy_tburl() {
  text = document.body.createTextRange();
  text.moveToElementText(document.all('tburl'));
  text.select();
  text.execCommand("Copy");
  alert("°ü·Ã±Û(Æ®·¢¹é) ÁÖ¼Ò°¡ Å¬¸³º¸µå·Î º¹»çµÇ¾ú½À´Ï´Ù. \n\n Ctrl+v·Î ¹®¼­¿¡ ¹Ù·Î ºÙ¿© ³ÖÀ¸¼¼¿ä.");
}

function showSelects(bVisible) { 
	// only IE actually do something in here 
	var selects = []; 
	if (document.all) 
	selects = document.all.tags("SELECT"); 
	var l = selects.length; 
	for (var i = 0; i < l; i++) 
	selects[i].runtimeStyle.visibility = bVisible ? "" : "hidden"; 
}