function viewReport() {
		document.all["report_btn"].src = "soft/images/co/main_tab_01_on.gif";
		document.all["pub_btn"].src = "soft/images/co/main_tab_02.gif";
		document.all["report"].style.display = "";
		document.all["pub"].style.display = "none";
		document.all["a_href"].href = "soft/KJ_CPXL.ASP";
}

function viewPub() {
		document.all["report_btn"].src = "soft/images/co/main_tab_01.gif";
		document.all["pub_btn"].src = "soft/images/co/main_tab_02_on.gif";
		document.all["report"].style.display = "none";
		document.all["pub"].style.display = "";
		document.all["a_href"].href = "soft/KJ_HYFA.ASP";
}
function objectlaunchSwf(tId, width, height, url){
	document.write("<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http_3A/download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0 id='"+tId+"' width='" + width + "' height='" + height + "'>");
	document.write("<param name='movie' value='" + url + "'>");
	document.write("<param name='quality' value='high'>");
	document.write("<param name='scale' value='noscale'>");
	document.write("<param name='wmode' value='transparent'>");
	document.write("<param name='allowScriptAccess' value='always'>");
	document.write("<param name='salign' value='t'>");
	document.write("<embed src='" + url + "' quality='high' name='"+tId+"' allowScriptAccess='always' scale='noscale' salign='t' pluginspage=http://www.macromedia.com/go/getflashplayer type=application/x-shockwave-flash width='" + width + "' height='" + height + "'></embed>");
	document.write("</object>");
}

function replaceAll(str , sep , pad) {
	 while(str.indexOf(sep) > -1) {
	  str = str.replace(sep , pad)
	 }
	 return str;
}

function lenCheck(value, len){
	var retval = value;
	if(retval.length > len){
		retval = retval.substring(0,len-1) + "..";
	}
	return retval;
}

function realTimeKeyword ( keyword , keyword_org , url ) { 
	return "<span onclick=\"javascript:parent.location.href='"+url+"';\" style='cursor:hand;' title='"+replaceAll(keyword_org," ","&nbsp;")+"'><font color=white><u>"+keyword+"</u></font></span>";
}