function activeborder(id)
{
	borderdiv = document.getElementById(id+"_DIV");
	borderdiv.style.borderLeftColor = "#EFCAB5";
}
function borderhover(id)
{
	borderdiv = document.getElementById(id+"_DIV");
	borderdiv.style.borderLeftColor = "#EFCAB5";
}
function bordernormal(id)
{
	borderdiv = document.getElementById(id+"_DIV");
	borderdiv.style.borderLeftColor = "#B82515";
}
