// JavaScript Document
function DoExit	(pForm)
{
var	sPathString					= "";
var	sSearchPathString			= "http://www.sba.gov";
if	(pForm.ExitTo)
	{
	if	(pForm.ExitTo.value == "GLS")
		{
		if (pForm.UpdateProtocolServer)			
			sPathString				= 	pForm.UpdateProtocolServer.value;
			top.location.href		= sPathString + "/gls/dsp_choosefunction.cfm";
		return;
		}
	else
		{
		top.location.href		= sSearchPathString ;
		}
	}
}
