/*function fixTableHeight(){
   var tab2Height = document.getElementById('table2').offsetHeight;
   var tab3Height = document.getElementById('table3').offsetHeight;
   var sum = tab2Height + tab3Height + 3;
   document.getElementById('table1').style.height = sum + 'px';
}*/

function fixTableHeight(){
   var tab2Height = document.getElementById('table2').offsetHeight;
   //var tab3Height = document.getElementById('table3').offsetHeight;
   var sum = tab2Height + 65;
   document.getElementById('table1').style.height = sum + 'px';
}

function displayMenuTable(){
 document.write('<table border="0" cellpadding="0" cellspacing="0">');
 document.write('<tr><td class="menu"><a href="/default.asp">Home</a></td><td class="menu"><a href="/about.asp">About</a></td>');
 document.write('<td class="menu"><a href="/articles.asp">Articles</a></td><td class="menu"><a href="/authors.asp">Authors</a></td>');
 //document.write('<td class="menu"><a href="/samples.asp">Samples</a></td>');
 document.write('<td class="menu" style="padding-right:0px;margin-right:0px;"><a href="/support.asp">Support</a></td></tr></table>');
}

function displayGreenBox(){
   document.write('<div class="greenboxtxt">Providing Answers for the Tough Questions');
   document.write('<ul class="greenboxlist">');
   document.write('<li>Concrete, practical information on legal management issues</li>');
   document.write('<li>Functional spreadsheets for financial management</li>');
   document.write('<li>Forms and checklists</li>');
   document.write('</ul></div>');
}


/***Clear search form textbox on focus***/
function clearText(){
   if(document.search.searchtext.value == "Search")
      document.search.searchtext.value = "";
}

function writeAddress(){
   document.write('<b>Association of Legal Administrators</b><br>');	
   document.write('75 Tri-State International<br>'); 
   document.write('Suite 222<br>');
   document.write('Lincolnshire, IL 60069-4435<br>'); 
   document.write('847.267.1252 <span style="font-size:5pt;font-weight:bold;">TEL</span><br>847.267.1329 <span style="font-size:5pt;font-weight:bold;">FAX</span><br>');
   document.write('<a href="http://www.alanet.org" target="_blank"><i>www.alanet.org</i></a>');
}

function writeCopyright(){
   document.write('Copyright &copy; 2011 by the<br><b>Association of Legal Administrators.</b><br>All Rights Reserved.<br><br><a href="/disclaimer.asp">Disclaimer</a>');
}


