<!--
	function show_linkname(linkname) {
		self.status = linkname;
	}
	
	function get_selected_index(targetfield, locat) {
		var searchedkey = "";
		for (key=0;key<targetfield.options.length;key+=1) {
			if (locat == targetfield.options[key].value) {
				searchedkey = key;
				key = targetfield.length;
			}
		}
		return searchedkey;
	}
//-->