<!--

function Links(idx, ext, tgt){
	mdx = eval(idx);
	next = Lk_df[idx][1];
	Jump(next, ext, tgt);
}
function Links_e(idx, ext, tgt){
	mdx = eval(idx);
	next = Lk_df[idx][2];
	Jump(next, ext, tgt);
}
function Jump(next, ext, tgt){
	if(!(next.match("http://")) && !(next.match("https://"))){
		next = Home_dir + next;
	}

	if(ext != null) {
		next = next + ext;
	}

	if(tgt == null) { location.href = next; }
	else {
		window.open(next, tgt, '');
	 }
}

-->

