		//by ray
		function OpenBrWindow(theURL,winName,features)
		{ //v2.0
			//alert(theURL);
			//var new_window = window.open(theURL,winName,'width=370,height=380');
			//var new_window = window.open(theURL,winName,features + ',scrollbars=yes,resizable=yes');
			//the abobe line will be changed when it is moved to production -rayson
			var new_window = window.open(theURL,winName,features);
			//alert(features);
			new_window.focus();
		}
		//by ray
		function searchSubmit(sform)
		{
			//disable form after submit so that it can't be submitted multiple times
			sform.onsubmit='javascript:void(0);';
			sform.btnGO.onclick='javascript:void(0);';
				
			var saction = sform.action;
			
			if(saction.indexOf('?') != -1)
				{
					saction	= saction + '&' ;
				}
			else
				{
					saction	= saction + '?' ;
				}					
			sform.action = saction + 'st=' + escape(sform.SearchTerm.value);
			sform.submit();
		}