function input(ident) {
var f = document.getElementById(ident);
//alert(f.value);
f.style.background="#ffffff";
}


function initfields(ident) {
var f = document.getElementById(ident);
f.value="";
}


function resetfield(ident) {
var f = document.getElementById(ident);
//alert(f.value);
if (f.value == "") {f.style.background="#ffffff url(../Images/input.png) left no-repeat"}
}

