function dropdownlinklist (contentRef, index) {
	var form	= document.forms[contentRef+"_listform"];
	url			= form.elements["dropdownlist"].options[index].value;
	if (url!="") {
		target	= form.elements["target"+index].value;
		if (target=="_top") {
			top.location.href=url;
		} else if (target=="_self") {
			self.location.href=url;
		} else if (target=="_blank") {
			window.open(url,"window"+index);
		} else { // falls target=="_notarget"
			self.location.hash = url;
		}
	}
}