<!--

function file_select_cb(x) {
	if (x['fsel'] == 1) {
		document.getElementById("fd"+x['fname']).style.backgroundColor = "#808080";
	} else {
		document.getElementById("fd"+x['fname']).style.backgroundColor = "#333333";
	}
	document.getElementById('ssc').innerHTML = x['selcount'];	
}

function file_select(dir_name,file_id) {
	x_file_select(dir_name,file_id,file_select_cb);	
}


//-->