function changeColor(obj, color)
{
	if (obj != null)
	{
		obj.style.backgroundColor = color;
		obj.style.borderColor = color;
	}
}

function changeImage(obj, file)
{
	if (obj != null)
	{
		obj.src = "images/" + file;
	}
}
