<!--
document.writeln('<br>');
//document.writeln('<center>');
document.writeln('<a href="index.html" target="_self"> Home</a> ');
document.writeln('&nbsp;&nbsp; &#149; &nbsp;');
document.writeln('<a href="createmetadata.html" target="_self"> Create Metadata</a> ');
document.writeln('&nbsp;&nbsp; &#149; &nbsp;');
document.writeln('<a href="publishmetadata.html" target="_self"> Publish Metadata</a> ');
document.writeln('&nbsp;&nbsp; &#149; &nbsp;');
document.writeln('<a href="searchmetadata.html" target="_self"> Search Metadata</a> ');
document.writeln('&nbsp;&nbsp; &#149;');
document.writeln('<a href="contactus.html" target="_self"> Contact Us</a> ');
document.writeln('<p>The Delaware NSDI Clearinghouse is maintained by the Research &amp; Data Management Services (RDMS),<br> ');
document.writeln('Information Technologies, University of Delaware in partnership with the Delaware Geographic Data Committee.</p>');
//document.writeln('</center>');
//>


function setBottom(H)
{
//alert(H);
  obj=document.getElementById('footer');
  divoffset=obj.offsetHeight+0;
  
  //alert(divoffset);
  if (obj.offsetTop<H-divoffset)
    {
    pos=H-divoffset;
    obj.style.position='absolute';
    obj.style.top=pos+'px';
    }
}