﻿var open_layer='';
function ellipsis(val){
	var len = 78;
	var ellip_id=document.getElementById(val);
	if (ellip_id){
		var trunc = ellip_id.innerHTML;
		if (trunc.length-184 > len) {
			trunc = trunc.substring(0, len);
			trunc = trunc.replace(/\w+$/, '');
			trunc += '<a href="#more" onclick="this.parentNode.innerHTML=unescape(\''+escape(ellip_id.innerHTML)+'\');focusmove(\''+ellip_id.id+'\');"><img src="http://images.wwn.hyundai.com/images/Web/SR/btn_plus.gif" alt="more" class="more"></a>';
			ellip_id.innerHTML = trunc+'...';
		}else {
			ellip_id.getElementsByTagName('img')[0].style.display='none';
			ellip_id.style.height='32px';
		}
		ellip_id.style.display = 'block';
	}
}
function focusmove(val){
	document.getElementById('trans_layer').style.display='block';
	document.getElementById('trans_layer').style.height=document.body.clientHeight + 'px';
	open_layer=val;
}

function layer_blur(){
	ellipsis(open_layer)
}

function ellipsism(){
	ellipsis('highlight_01');
	ellipsis('highlight_02');
	ellipsis('highlight_03');
}

window.onload = ellipsism;