function show() {
	document.all.info.visibility = true;
}	

function MOver(tableField)	{
	tableField.style.cursor = 'hand';
	tableField.className = 'boxfieldmover';
}

function MOut(tableField)	{
	tableField.style.cursor = 'default';
	tableField.className = 'boxfield';
}

