function changeBg() {
document.getElementById('txt1').style.backgroundImage = 'none';
}

function checkBG() {
if (document.myform.txt1.value.length > 0) {
document.getElementById('txt1').style.backgroundImage = 'none';
}
}
