ELP 학생들은 캠퍼스의 다양한 카페테리아 및 레스토랑에 대한 식사 계획을 구매할 수 있습니다.
기숙사 형태:다양하다 (계약단위: 1 semester)
--- 한국어로 보기 ---";
}
function get_less_html(idx){
return "
--- 한국어로 보기 ---";
}
function print_less(idx){
sobj = document.getElementById(content_show_array[idx]);
pobj = document.getElementById(content_push_array[idx]);
if (sobj) {
sobj.style.height=content_height+'px';
pobj.innerHTML = get_more_html(idx);
}
}
function print_more(idx){
sobj = document.getElementById(content_show_array[idx]);
pobj = document.getElementById(content_push_array[idx]);
if (sobj) {
sobj.style.height='';
pobj.innerHTML = get_less_html(idx);
}
}
function init_more_less(){
var i, max=content_idx_array.length;
for (i=0;i
content_height) {
sobj.style.height = content_height+'px';
pobj.innerHTML = get_more_html(content_idx_array[i]);
}
}
}
function onload_event(){
init_more_less();
}
function hid(tar){
var and = document.getElementById(tar).style.display;
if(and == 'none'){
document.getElementById(tar).style.display = "block";
}else{
document.getElementById(tar).style.display = "none";
}
}
-->