function ConfirmLogout()
{
	//--------------------------------------------------------------------------------------------------
	// Prompt user to be sure they want to log out.
	//--------------------------------------------------------------------------------------------------

	answer = confirm("Are you sure you want to log out?");
	if(answer == true)
		location = "http://www.comsda.com/logout.asp"
	
}