function FocusCol(obj)	{
if (document.getElementbyId || document.all)
	{
	obj.style.color="#000000";
	obj.style.backgroundColor="#F6F4E5";
	}
}

function BlurCol(obj)	{
if (document.getElementbyId || document.all)
	{
	obj.style.color="#000000";
	obj.style.backgroundColor="#FFFFFF";
	}
}

function BlurColCB(obj)	{
if (document.getElementbyId || document.all)
	{
	obj.style.color="#FFFFFF";
	obj.style.backgroundColor="#F5F5F5";
	}
}


function unblur() {
this.blur();
}

function blurLinks() {
if (!document.getElementById) return;
theLinks = document.getElementsByTagName("1");
for(i=0; i<theLinks.length; i++) { 
theLinks[i].onfocus = unblur;
}
}


