function appear(src,clrOver)
{
 	if (!src.contains(event.fromElement)) {
 	 src.style.cursor = 'hand';
	 src.bgColor = clrOver;
	}
add.value="The login is for\r members only."
add.style.height=40
add.style.width=150
}

function disappear(src,clrIn)
{
	if (!src.contains(event.toElement)) {
     	 src.style.cursor = 'default';
     	 src.bgColor = clrIn;
	}

add.value=""
add.style.height=0
add.style.width=0
}

