		function MouseIn(cell)
		{
		//alert('Hallo');
		//document.getElementById("abc").background='images/whitepixel.gif';
		//cell.background='images/whitepixel.gif';
		cell.style.background='white';
		cell.style.cursor='pointer'
		}

		function MouseOut(cell)
		{
		cell.style.background='#9696B1';
		cell.style.cursor='pointer'
		}	
