function colfunds_obj_popup( url,contentListControl ) { 
	if(url == null || contentListControl == null){
		return;
	}
	
	if(contentListControl.options == null){
		return;
	}
	
	//find the first (shoud be only) selected item
	var selectedIndex = 1;
	for (var i=0; i<contentListControl.options.length; i++) {
		var o = contentListControl.options[i];
		if (o.selected) {
			selectedIndex = i;
			break;
		}
	}
	
	// the first option is the instructional text
	if(selectedIndex < 1){
		alert('Please select and objective.');
		return;
	}
	var selectedValue = contentListControl.options[selectedIndex].value;
	var features = 'height=260,width=650,top=10,left=10,toolbar=0,location=0,statusbar=0,menubar=0,resizable=yes,scrollbars=1';
	popupWin = window.open(url +selectedValue , 'popupWin'+(new Date()).getSeconds().toString(), features) ; 
}

// perform a simple javascript popup
function colfunds_popUp(target,args){
	
	if(target == null){
		return;
	}
		
	var newWin = window.open(target,"Popup",args);
	newWin.focus();

}

