function openLink(form)
{
	var fluID = new Date().getTime(); // unique ID to name popup
	var numSelections=form.selectedIndex; // number of selections
	str = new String(form.options[numSelections].value); // value of selection
	strarray = str.split(/\,/); // splits value on a comma
	if (strarray[0] != "none") 
	{
		if (strarray[0] == "same")
		{ // loads in same window
	 		parent.location.href = strarray[1];
	 		form.selectedIndex = 0;
	 	}else if (strarray[0] == "popup"){// load in popup window
	 		window.open(strarray[1], fluID, "");
	 		form.selectedIndex = 0;
		}
	}
}

