function changeStyleOut(obj)
{
	if(obj.style)
		obj.style.border = "thin outset";
}

function changeStyleIn(obj)
{
	if(obj.style)
		obj.style.border = "thin inset";
}
