//////////////////////////////////// ÇÐ»»¿éTAB
function showcon(obj,ulid) {
	var o=document.getElementById(ulid);
   var c=o.childNodes;
   for(var i=0;i<c.length;i++){
	   if(typeof c[i] != "HTMLLIElement") {
		   if(c[i]==obj) {
		      c[i].className="on";
			  var liid = c[i].id;
			  if(typeof liid!="undefined" && liid!="") {
//				  alert("selected:"+c[i].id);
				  var con = document.getElementById("con_"+c[i].id);
				  if(typeof con!="undefined" && con!="") {
					  con.style.display="";
				  }
			  }
		   } else {
		      c[i].className="";
			  var liid = c[i].id;
			  if(typeof liid!="undefined" && liid!="") {
//				  alert(c[i].id);
				  var con = document.getElementById("con_"+c[i].id);
				  if(typeof con!="undefined" && con!="") {
					  con.style.display="none";
				  }
			  }
		   }
	   }
    }
}
