//menu.js

/*
* This script is used by every page to create the navigation bar (the left column), 
* the title row (the top row with project tittle), two horizontal divide lines, and 
* the bottom row with the copyright info line.
*/

//This function is used to create navigation bar
function navigation(category){
	document.writeln('	<table width="125" border="0" cellpadding="0" cellspacing="0" >');
	if (category=="Home"){
		document.writeln('		<tr><td><a href="default.htm" class="mainlevel" id="active_menu" >Home</a></td></tr>');
	}
	else {
		document.writeln('	  <tr><td><a href="default.htm" class="mainlevel" >Home</a></td></tr>');
	}
	
	if (category=="Teaching"){
		document.writeln('		<tr><td><a href="teaching.htm" class="mainlevel" id="active_menu" >Teaching</a></td></tr>');
	}
	else {
		document.writeln('	  <tr><td><a href="teaching.htm" class="mainlevel">Teaching</a></td></tr>');
	}
	
	if (category=="Research"){
		document.writeln('		<tr><td><a href="research.htm" class="mainlevel" id="active_menu" >Research</a></td></tr>');
	}
	else {
		document.writeln('	  <tr><td><a href="research.htm" class="mainlevel" >Reseach</a></td></tr>');
	}
	
	if (category=="Service"){
		document.writeln('		<tr><td><a href="service.htm" class="mainlevel" id="active_menu" >Service</a></td></tr>');
	}
	else {
		document.writeln('	  <tr><td><a href="service.htm" class="mainlevel">Service</a></td></tr>');
	}
	
	if (category=="Links"){
		document.writeln('		<tr><td><a href="links.htm" class="mainlevel" id="active_menu" >Links</a></td></tr>');
	}
	else {
		document.writeln('	  <tr><td><a href="links.htm" class="mainlevel">Links</a></td></tr>');
	}
	
	document.writeln('		<tr>');
	document.writeln('		<td height="2" bgcolor="aaaaaa"></td>');
	document.writeln('		</tr>');
	document.writeln('	</table>');
	
}


//This function creates the top row with the title line and background
function titletext(){
	document.writeln('	<tr><td colspan ="3" height="120" valign="center" background="icons/headerbg.jpg" bgcolor="E9FCC5">');
	document.writeln('	<p align="center"><b><font size="6">Welcome to the Web Site of Dr. Shih-Lung Shaw </font></b>');
	document.writeln('	<p align="center"><font face="Arial" size="3" color=#3333cc><strong>UTK</strong></font></td></tr>');
}

//This function creates the divide line
function divideline(){
	document.writeln('	<tr><td height="4" bgcolor = #3333cc colspan ="3"></td></tr>');
}

//This function create the bottom row with copyright info line
function bottomlinetext(){
	document.writeln('	<tr><td colspan ="3" height="30" align="center"><font size="2" face="Arial"> Copyright © 2006 | Contact Webmaster: <a href="mailto:xhuang8@utk.edu">xhuang8@utk.edu </a></font></td></tr>');
}