// JavaScript Document
function adjHeight () {
var lheight, rheight, dif;
lheight=document.getElementById('left').offsetHeight;
rheight=document.getElementById('main').offsetHeight;

if (rheight > lheight) {
    dif = rheight - lheight +2;
    document.getElementById('lmenu').style.paddingBottom=dif+"px";
    }

}

function adjHeightAll () {
var lheight, rheight, dif;
lheight=document.getElementById('lmenu').offsetHeight;
rheight=document.getElementById('main').offsetHeight;

if (rheight > lheight) {
    dif = rheight - lheight +160;
    document.getElementById('lmenu').style.paddingBottom=dif+"px";
    }

}

function formCheck(){
 if (document.formEval.Company.value==""){
   alert("Please enter your Company Name.");
   document.formEval.Company.focus();
   return false;
 }
 if (document.formEval.Contact.value==""){
   alert("Please enter your Contact person.");
   document.formEval.Contact.focus();
   return false;
 }
 if (document.formEval.Email.value==""){
   alert("Please enter your Email address.");
   document.formEval.Email.focus();
   return false;
 }
}
