<!--
function FNChangeURI(o)
{
	if(o.options[o.selectedIndex].value!="")
		window.location = o.options[o.selectedIndex].value;
	else
		return false
}
	

function popUp(link, winWidth, winHeight) {

	
	if((winWidth == null) || (winWidth =="")) {
		winWidth = 250;
	}
	if((winHeight == null) || (winHeight =="")) {
		winHeight = 300;
	}
	
	var theSettings = "toolbar=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,directories=no,location=no,width=" +winWidth+",height=" +winHeight+",left=0,top=0";	
	
	var theTarget = "_blank"; // Set default value for the link target	
	if ((link.target != null) && (link.target != "")) {
		theTarget = link.target;
	}
	
	newWin = window.open(link.href, theTarget, theSettings);
	newWin.focus(); // make sure the new window has focus.
	
	return false;
}

-->