


function chgColor(_identifier, _id, _back, _font) {

	if(_id == 1) {
		document.getElementById(_identifier).style.backgroundColor = _back;
		document.getElementById(_identifier).style.color = _font;
	} else {
		document.getElementsByName(_identifier)[0].style.backgroundColor = _back;
		document.getElementsByName(_identifier)[0].style.color = _font;
	}
	
}

function focusThis(_identifier, _id) {
	chgColor(_identifier, _id, '#df0c0c', '#ffffff');
}

function blurThis(_identifier, _id) {
	chgColor(_identifier, _id, '#ffffff', '#000000');
}
	
function blurLink(theObject)	{	//
			if (msie4)	{theObject.blur();}
		}

