// JavaScript Document
	//Checks members search page form for a non-operative option selected, otherwise submits as normal.
	//opt = option value selected, form_name is name of form to be submitted (search page has multiple forms)
	function check_option(opt,form_name)
	{
		var formid
		formid = 'document.'+form_name+'.submit()';
		if (opt!='null') eval(formid);
	}
