
function swap(color)
{
	if (color ==null)
		document.bgColor = "#000";
	else
		document.bgColor = ("#" + color);
}