// Tue 08 Jul 2003, Ken Yasuhara <yasuhara@cs> 
// Javascript functions for adding elements common to all
// pages, e.g., CAEE header bar, black nav. bar below,
// sidebar menu w/ top-level subpage titles

// color: #5E4587;

function startPage() {
  document.write('<body background="images/backgroundbar.gif">\n');
  document.write('<table border="0" width="100%" cellspacing="0" cellpadding="0">\n');
  includeHeaderBar();
  includeSidebarMenu();
}

function includeHeaderBar() {
  document.write('<tr>\n');
  document.write('  <td align="center" valign="middle" bgcolor="#9999CC" width="400">\n');
  // document.write('  <a href="http://www.nsf.gov/"><img src="images/nsf-logo.gif" alt="NSF logo" width="70" height="70" border="0"></a>\n');
  // document.write(' Center for the <br>Advancement of Engineering Education');
  document.write('  <img src="images/CAEELogoColorBkgrndsmall2.jpg" alt="CAEE logo" width="400" height="114" border="0">\n');
  document.write('  </td>\n');
  
  document.write('  <td align="left" valign="bottom" bgcolor="#9999CC"><h4>Center for <br>the Advancement of <br>Engineering Education</h4></td>\n');

  document.write('  </tr></table><table border="0" width="175" cellspacing="0" cellpadding="0"><tr>\n');
  // document.write('  <td align="left" bgcolor="#9999CC" width="90%">\n');
  // document.write('  <img src="images/CAEELogoColorBkgrndsmall2.jpg" alt="CAEE logo" width="400" height="114" border="0">\n');
  document.write('  </td>\n');
  document.write('</tr>\n');
  
  document.write('\n');
  
  document.write('</table><table border="0" width="100%" cellspacing="0" cellpadding="0"><tr>\n');
  document.write('  <td colspan="2" width="100%" height=20 align="right" valign="middle" bgcolor="#006699">\n');
  // yasuhara, Wed 09 Jul 2003: links removed per Dennis Lund's request
  //  document.write('  <a class="navlink" href="http://www.engr.washington.edu/">College of Engineering <img src="images/rightarrow.gif" alt="&gt;" align="middle" border=0></a>&nbsp;&nbsp;<a class="navlink" href="http://www.washington.edu/">University of Washington <img src="images/rightarrow.gif" alt="&gt;" align="middle" border=0></a>&nbsp;&nbsp; \n');
  document.write('  </td>\n');
  document.write('</tr>\n');
  
  document.write('\n');
  
  document.write('<tr>\n');
  document.write('  <td colspan="2" width="100%" height=2 align="right" valign="middle" bgcolor="#999966">\n');
  document.write('  </td>\n');
  document.write('</tr>\n');
}

function includeSidebarMenu() {
  var clicked = 1;
  document.write('  <tr>\n');
  document.write('    <td align="left" valign="top" bgcolor="#D2CBDD">\n');
  document.write('    <table width="175" cellpadding="10">\n');
  document.write('      <tr>\n');
  document.write('    	<td width="100%" align="left" valign="top">\n');
  document.write('    	<a href="http://engr.washington.edu/caee/index.html"><h3 class="nav">CURRENT ACTIVITY</h3></a>\n');
  document.write('    	<a href="http://engr.washington.edu/caee/overview.html"><h3 class="nav">OVERVIEW</h3></a>\n');
  document.write('	<a href="http://engr.washington.edu/caee/research_elements_portal.html"><h3 class="nav">RESEARCH ELEMENTS</h3></a>\n');
  document.write('    	<a href="http://engr.washington.edu/caee/publications.html"><h3 class="nav">PUBLICATIONS & RESOURCES</h3></a>\n');
  document.write('    	<a href="http://engr.washington.edu/caee/portal_research_briefs.html"><h3 class="nav">RESEARCH BRIEFS</h3></a>\n');
  document.write('    	<a href="http://engr.washington.edu/caee/people.html"><h3 class="nav">PEOPLE</h3></a>\n');  
  document.write('    	<a href="http://engr.washington.edu/caee/contactinfo.html"><h3 class="nav">CONTACT</h3></a>\n');
  document.write('    	<a href="http://engr.washington.edu/caee/CAEE_search.html"><h3 class="nav">SEARCH</h3></a>\n');
  document.write('    	<a href="http://engr.washington.edu/caee/Site_Map.html"><h3 class="nav">SITE MAP</h3></a>\n');
  document.write('    	<br>\n');
  
  document.write('    	</td>\n');
  document.write('      </tr>\n');
  document.write('    </table>\n');
  document.write('  </td>\n');
  document.write('    <td width="90%" align="left" valign="top" bgcolor="#FFFFFF">\n');
  document.write('    <table border="0" width="100%" cellspacing="25" cellpadding="0">\n');
  document.write('    <tr><td width="100%" align="left" valign="top" bgcolor="#FFFFFF">\n');
//white background #FFFFFF had been modified to light green #DEF3BD
//cellpadding had been changed from "0" to "5"
}
function showOrHide()
{
   links = document.getElementById("myhid");
   if(links)
   {
	 if(links.style.display == "none")
  		links.style.display = "";
         else
  		links.style.display="none";
   }
}
function endPage() {
  document.write('</td>\n');
  document.write('</tr>\n');
  document.write('</table>\n');
  document.write('</td>\n');
  document.write('</tr>\n');
  document.write('</table>\n');  
  document.write('</body>\n');  
}
