// rev 2009-8-22// document.write() abbrevfunction w(s){  document.write(s);}// footer infofunction footer(revdate, filename, homename, copyrightdate){  window.onresize = redoPage;  var dirurl = "http://www.BioPscInst.com/";  var fullurl = dirurl+filename;  var homeurl = dirurl+homename;  w('<TABLE NCOLS="2" CELLPADDING="10" WIDTH="100%">');  w('<TR VALIGN="TOP"><TD WIDTH="33%">');  w('<ADDRESS>');  w('<H4>Martin Bulgerin<BR>BioPsciences Institute<BR>P.O. Box 11026<BR>');  w('Minneapolis, MN 55412<BR>');  w('Email: <A HREF="mailto:bunlion@bitstream.net">bunlion@bitstream.net</A></H4>');  w('</ADDRESS>');  w('</TD><TD>');  w('<P>Revision date: '+revdate+'<BR>');  w('This page\'s URL is <A HREF="'+fullurl+'">'+fullurl+'</A>.<BR>');  w('This home page of this web site is <A HREF="'+homeurl+'">'+homeurl+'</A>.<BR>');  w('&copy;Copyright '+copyrightdate+', BioPsciences Institute.  All Rights Reserved.');  w('</TD></TR></TABLE>');}// reload page (to handle resize bug)function redoPage(){  var myURL = window.location.href;  window.location.replace(myURL);}
