<!--

function overCell(o)
{
	id = o.id;
	if (document.getElementById(id) != null)
	{		
		cell = document.getElementById(id);
		cell.style.border = "solid #666666 1px";
	}		
}	
	
function outCell(o)
{	
	id = o.id;
	if (document.getElementById(id) != null)
	{	
		cell = document.getElementById(id);	
		cell.style.border = "solid #ffffff 1px";
	}		
}	
	
function overBtn(o)
{
	id = o.id;
	if (document.getElementById(id) != null)
	{		
		btn = document.getElementById(id);
		btn.style.border = "solid #666666 1px";
		btn.style.backgroundColor = "#ffffff";
	}		
}	

function outBtn(o)
{
	id = o.id;
	if (document.getElementById(id) != null)
	{		
		btn = document.getElementById(id);
		btn.style.border = "";
		btn.style.backgroundColor = "";
		//For IE only
		btn.style.border = "1px solid #cccccc";
		btn.style.borderBottomColor = "#666666";
		btn.style.borderRightColor = "#666666";
	}		
}	

//-->