function LogOutJS(sNewLocation)
{
	try
	{
		if (browseris.ie6up)
		{
			document.execCommand("ClearAuthenticationCache","false");
			alert('You have	been logged	off	from this Web site.');
			self.location.href = sNewLocation;
		}
		else
		{
			alert("This	feature	requires Internet Explorer 6.0 Service Pack	1 or above.	You	need to	close all browser windows in order to complete the log off process.");
		}
	}
	catch (e)
	{
		alert("This	feature	requires Internet Explorer 6.0 Service Pack	1 or above.	You	need to	close all browser windows in order to complete the log off process.");
	}
}
	
function SubmitRunUD(strURL, strMessage, strArgs)
{
	var	bolConfirm = false;
	bolConfirm = confirm(strMessage);
	if (bolConfirm)
	{
		SubmitFormPost(strURL +	strArgs);
	}
	else
	{
	}
}