function ChangeForeColor(element, color)
{
	element.style.color = color;
}

function ChangeBackColor(element, color)
{
	element.style.backgroundColor = color;
//	element.style.background_color = color;
}

function SetCursor(new_cursor)
{
  var cursor = 
     document.layers ? document.cursor :
     document.all ? document.all.cursor :
     document.getElementById ? document.getElementById('cursor') : null;

	cursor = new_cursor;

//	document.body.style.cursor = cursor;
}