//ÀÌ¹ÌÁö Å¬¸¯½Ã Å×Åõ¸® ¾Èº¸ÀÌ°Ô..
function autoBlur(){ 
  if(event.srcElement.tagName=="A"||event.srcElement.tagName=="IMG") 
  document.body.focus(); 
} 
  document.onfocusin=autoBlur; 

//ÆË¾÷¶ç¿ì±â
function openWin(url,width,height){

	window.open(url,'','width='+width+',height='+height+',scrollbars=no,resized=no');

}

//ÆË¾÷¶ç¿ì±â02
function openWin02(url,width,height){

	window.open(url,'','width='+width+',height='+height+',scrollbars=yes,resized=no');

}

//faq
function view_answer(num) {
		if (eval("document.all.a_"+num).style.display == "none") {
			for (i=1;i<=3;i++) {
				var q_obj = eval("document.all.q_" + i);
				var a_obj = eval("document.all.a_" + i);
				if (i == num) {
					q_obj.style.backgroundColor = "#ffffff";
					q_obj.style.fontWeight = "normal"
					a_obj.style.display = "block";
				} else {
					q_obj.style.backgroundColor = "#FFFFFF";
					q_obj.style.fontWeight = "normal"
					a_obj.style.display = "none";
				}
			}
		} else {
			var q_obj = eval("document.all.q_" + num);
			var a_obj = eval("document.all.a_" + num);
			q_obj.style.backgroundColor = "#FFFFFF";
			q_obj.style.fontWeight = "normal"
			a_obj.style.display = "none";
		}
	}
	function change_color(obj) {
		obj.style.backgroundColor = "#ffffff";
	}
	function change_reset(obj,num) {
		var a_obj = eval("document.all.a_" + num);
		if (a_obj.style.display != "block") {obj.style.backgroundColor = "#FFFFFF";}
	}
