// Banner as Javascript so that it can easily be included in all pages
//Bioinformatics Core Research Facility - University of Nebraska, Lincoln
function displayBanner(rootSite) {
	document.writeln(	"<div id='sectionBanner'>"+
					 		"<a name='topPage'></a>"+
							"<a href='http://www.unl.edu' target='_blank'><img id='logoUNL' src='"+rootSite+"images/navigation/logoUNL.png' alt='Logo UNL' /></a>"+
							"<div id='underConstruction'><table style='width: 250px;'><tr><td><img src='"+rootSite+"images/navigation/warning.jpg' alt='Warning' height='50px'/></td><td><b>We are currently in the process of redesigning our webpages.</b></td></tr></table></div>"+
							"<h1 class='mainTitle'><img src='"+rootSite+"images/logo/Logo.jpg' alt='Logo UNL' /></h1>"+
							"<div id='navTree'>"+
								"<a href='http://www.unl.edu'>UNL</a>&nbsp;>&nbsp;"+
								"<a href='http://biotech.unl.edu/'>Center for Biotechnology</a>&nbsp;>&nbsp;"+
								"<a href='http://bioinformatics.unl.edu/'>BCRF</a>"+
							"</div>"+
						"</div>");
}