// JavaScript Document

function highlightinput(formval) {

var defaultcolor = "#FFF"
var hovercolor = "#FFFFCC"

document.getElementById(formval).style.backgroundColor = hovercolor;
//document.getElementById(formval).onblur = document.getElementById(formval).backgroundColor=defaultcolor

}

function restoreinput(formval) {

var defaultcolor = "#FFF"
var hovercolor = "#FF0"

document.getElementById(formval).style.backgroundColor = defaultcolor;
//document.getElementById(formval).onblur = document.getElementById(formval).backgroundColor=defaultcolor

}