function DoExit	(pForm)
{
var	sPathString				= "";
if	(pForm.ExitTo)
	{
	if	(pForm.ExitTo.value == "GLS")
		{
		top.location.href	= "/gls/dsp_choosefunction.cfm";
		return;
		}
	}
if	(pForm.DocRootURL)
	sPathString				= pForm.DocRootURL.value;
top.location.href			= sPathString + "/index.cfm";
}
