var wOpened = null;
var w = null;

// -----------------------------------------------
/*function ShowExpertInfo(id) {

	params = 'task=showExpertInfo&';
	params += 'id=' + id;
	new Ajax.Request('/lib/Ajax/ajax.common.php', {method:'post', postBody:params, onSuccess:CheckFormHandler});
	//new Ajax.Updater('debug', '/lib/Ajax/ajax.client.php', {method:'post', postBody:params});
}*/

// -----------------------------------------------

function CheckFormHandler(t)
{
	if (t.responseText) {
		document.getElementById('errors').innerHTML = t.responseText;
	}
	else {
//		document.location.href = "/password_reminder.php?done";
	}
}


