// $Id$

/* Pod Login Handler */

var PodLoginHandler = Class.create();

PodLoginHandler.prototype = {
	initialize: function()
	{
		this.returnValue;
	},
	
	ajaxUpdate: function(ajaxResponse)
	{
		var node = ajaxResponse.childNodes[0];
		//alert('response = ' + node.getAttribute('response'));
		this.returnValue = (node.getAttribute("response") == "1") ? node.getAttribute("details") : "";
	},
	
	getReturnValue: function()
	{
		return (this.returnValue);
	}
};
