var rand1=Math.floor(Math.random()*3); 
var rand2=Math.floor(Math.random()*7); 

function bodytop(directory,area){

var a1 = "";
var a2 = "";
var a3 = "";

if (area == 1)
	{
		a1 = "class=navOn";
	}
else if (area == 2)
	{
		a2 = "class=navOn";
	}
else if (area == 3)
	{
		a3 = "class=navOn";
	}
else 
	{

	}

document.write('	<DIV id=ua_banner>');
document.write('		<A id=ua_site_link title="The University of Arizona" href="http://www.arizona.edu/"></A>');
document.write('		<UL id=ua_banner_links>');
document.write('			<LI><A title="UA Science Home" href="http://cos.arizona.edu/">UA Science Home</A></LI>');
document.write('		</UL>');
document.write('	</DIV>');
document.write('	<br/>');
document.write('	<DIV id=masthead>');
document.write('		<IMG alt="Biological Physics Program" src="' + directory  + 'navigation/title' + rand1  + '.jpg" width="470" height="155">');
document.write('		<IMG alt="Biological Physics Program" src="' + directory  + 'navigation/side' + rand2  + '.jpg" width="244" height="155">');
document.write('	</DIV>');
document.write('	<DIV id=globalNav>');
document.write('	<table><tr>');
document.write('		<td><A ' + a1  + ' title="Home" href="' + directory  + 'index.htm">Home</A></td>');
document.write('		<td><A ' + a2  + ' title="Meetings" href="' + directory  + 'meetings/index.htm">Meetings</A></td>');
document.write('		<td><A ' + a3  + ' title="Meetings" href="' + directory  + 'biophest/index.htm">Biophest</A></td>');
document.write('	</tr></table>');
document.write('	</DIV>');

}

function bodybot(directory){

document.write('	<DIV id=footer>');
document.write('		<DIV id=footerLogo></DIV>');
document.write('		<P></P>');
document.write('	</DIV>');

}