
function floorplan_seat_mouseOver(div, x, y, seat_taken, seat_number, username, realname, city, statustext, statusclass)
{
	var block = $('floorplan-float');
	block.style.left = x + 'px';
	block.style.top = y + 'px';
	block.style.display = 'block';
	
	$('floorplan-float-seatnumber').innerHTML = seat_number + '.';
	$('floorplan-float-reservationinfo').style.display = (seat_taken) ? 'block' : 'none';
	$('floorplan-float-username').innerHTML = username;
	$('floorplan-float-realname').innerHTML = realname;
	$('floorplan-float-city').innerHTML = city;
	$('floorplan-float-status').innerHTML = statustext;
}

function floorplan_seat_mouseOut(div)
{
	$('floorplan-float').style.display = 'none';
}

function hash_password(inputID)
{
	var element = $(inputID);
	element.value = hex_md5(element.value);
}