try {
document.execCommand('BackgroundImageCache', false, true);
} catch(e) {}
function inputText(id,text) {
 obj = document.getElementById(id);
 if (obj.value == text){
  obj.value = "";
 }
 else if (obj.value == "") {
  obj.value = text;
 }
}

