function quickOff(e)
{
if(isDOMcompliant())
	   {
		document.getElementById(e).style.color ="#000000";
		document.getElementById(e).style.backgroundColor ="#D3D7DC";
        }
}

function quickOn(e) 
{
	if(isDOMcompliant())
	   {
		document.getElementById(e).style.color ="#ffffff";
		document.getElementById(e).style.backgroundColor ="#013374";
        }
}


function isDOMcompliant()
{
    return document.getElementById && document.getElementsByTagName;
}
