/*
	File: searchfilter_helpers.js
	Description: Javascripts used in general contexts for the search filters.
	Author: Terence Collins <tcollins@triumvant.com>
	Date: May 25, 2007
*/



function searchfilter_call(select_widget) {
    if ( select_widget.options[select_widget.selectedIndex].value == 'NULL' ) {
        return false;
    }	
    
    window.location = select_widget.options[select_widget.selectedIndex].value;
	return true;
}

