//
// KillSession(sessionID)
// Kills the current Session. 
//
// strSessionID:  Session ID of the current session. (i.e. S_ID)
//
function killSession(strSessionID)
{
	// Kill the session
	var xmlhttp = new ActiveXObject( "Microsoft.XMLHTTP" );
	xmlhttp.open( "POST", "killsession.asp?S_ID="+strSessionID, false);
	xmlhttp.send(""); 
}