/**************************************************
AJAX HandlerFunctions
-------------------------------------------------


Tested against:
MSIE 7.0.5730
Mozilla FF 3.0.4
Safari 3.1.1
Opera 9.27

Rene Modesto, January 2008
**************************************************/
var dalHandler = '/dal.main.asp?';

function doLogin(containerObj, responseText)
{
	//containerObj.innerHTML = responseText;
	//AJAX(dalHandler + 'a=getNews', 'GET', document.getElementById('content'), null, null);
	window.location.reload();
}

function doLogout(containerObj, responseText)
{
	//containerObj.innerHTML = responseText;
	//window.location = "/";
	window.location.reload();
}

