void Button(void) interrupt 0	//Extern 2 - INT0
{
IE = 0;
enc = ENC0;

if (BUT2 == 0)	//Encoder
	{
	if (enc == 0)	//Vol+
		{
		if (vol < 63)
			{
			vol++;
			writespi(1);
			}
		}
	else 	//Vol-
		{
		if (vol > 0)
			{
			vol--;
			writespi(1);
			}
		}
	}