function show(obj) {   
    var theObj = document.getElementById(obj).style;   
    theObj.display  = "block";  
}   
function hide(obj) {   
    var theObj = document.getElementById(obj).style;   
   theObj.display = "none"; 
}   
 function Highlight(objectref) {
    objectref.style.backgroundColor='#eff7ff';
  }
  function Normal(objectref) {
    objectref.style.backgroundColor='#ffffff';
  }

 function fsearch(str) {
    open('http://yandex.ru/sitesearch?text=' + str + '&site=' + document.location.hostname);
    }

function feedbackSubmit(){

if ((document.form1.eml.value!="")|(document.form1.tel.value!="")){

return true}

else{

alert("Не заполнено одно из полей: e-mail или телефон!")

return false;}

}
