showXmlHttp(xmlhttp, '/xmlhttp.aspx?FID=3&Language=2', 'leftmember');
function AccountLogin(gotoUrl)
{
	var email = document.getElementById('email');
	var pword = document.getElementById('pword');

	    showXmlHttp(xmlhttp, '/xmlhttp.aspx?FID=3&Language=2&LoginRequest=1&email=' + email.value + '&pword=' + pword.value, 'leftmember');
	
	if (gotoUrl != '') window.location.href = gotoUrl;
}
function AccountLogOut(gotoUrl)
{
	showXmlHttp(xmlhttp, '/xmlhttp.aspx?FID=3&Language=2&Logout=1','leftmember');
	if (gotoUrl != '') window.location.href = gotoUrl;
}
