// Onfocus of form text fields

function focusfield(str)
{
document.getElementById(str).style.borderColor="#990000";
document.getElementById(str).style.backgroundColor="#FFFFD7";
}

function blurfield(str)
{
document.getElementById(str).style.borderColor="#A7A6AA";
document.getElementById(str).style.backgroundColor="FFFFFF";
}