var contacts = 3;

var names  = new Array(contacts);
var emails = new Array(contacts);
var titles = new Array(contacts);
var display= new Array(contacts);

/* BEGIN LIST OF CONTACTS */

 names[0] = "Terrence Casey";
titles[0] = "Department Head/Associate<br>Professor of Political Science";
emails[0] = "casey1@rose-hulman.edu";
display[0] = "casey1@rose-hulman.edu";

 names[1] = "Merry Miller Moon";
titles[1] = "Department Secretary";
emails[1] = "miller2@rose-hulman.edu";
display[1] = "miller2@rose-hulman.edu";

 names[2] = "Tel: (812) 877-8276<br>Fax: (812) 877-8909";
titles[2] = "";
emails[2] = "";
display[2] = "";

/* END OF LIST */
document.write('<table border="0" cellpadding="0" cellspacing="0" height="1" width="206">');
document.write('<tr>');
document.write('<td><font color="#464f56"><img src="http://www.rose-hulman.edu/roseimages/gray_ta01.gif" height="3" width="206"></font></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="center" background="http://www.rose-hulman.edu/roseimages/gray_ta02.gif" height="103" valign="top">');
document.write('<table border="0" cellpadding="0" cellspacing="0" height="1" width="194">');
document.write('<tr>');
document.write('<td style="padding-left: 7px;" height="18" valign="top">');
document.write('<p align="center"><b><span class="left_title"><font color="#464f56" face="Verdana" size="2">Contact</font></span></b></p>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td bgcolor="#FFFFFF" width="206" style="border-top: 1px solid #dcdcdc;border-bottom: 1px solid #dcdcdc;">');
document.write('<ul id="contact">');
for (i=0; i<contacts; i++) {
	document.write('<li>');
	document.write('<div class="name">' + names[i] + '</div>');
	if (titles[i].length > 0)
	{ document.write('<div class="title">' + titles[i] + '</div>'); }
	if (emails[i].length > 0)
	{ document.write('<a href="mailto:'+emails[i]+'">'+display[i]+'</a></li>'); }
}
document.write('</ul>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="center" bgcolor="#EFEFEF" height="4" valign="top"><font size="1">&nbsp;</font></td>');
document.write('</tr>');
document.write('</table>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="center" background="http://www.rose-hulman.edu/roseimages/gray_ta02.gif" height="1" valign="top"><font style="font-size: 3pt;" color="#464f56">&nbsp;</font></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td><font color="#464f56"><img src="http://www.rose-hulman.edu/roseimages/gray_ta03.gif" height="3" width="206"></font></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td><br>');
document.write('<img src="http://www.rose-hulman.edu/roseimages/gray_ta11.gif" height="26" width="206"></td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="center" background="http://www.rose-hulman.edu/roseimages/gray_ta05.gif" valign="top">');
document.write('<form name="search" method="get" action="http://www.google.com/u/rhit">');
document.write('</form>');
document.write('<table border="0" cellpadding="0" cellspacing="0" height="31" width="194">');
document.write('<tr>');
document.write('<td style="padding-top: 3px;  border-bottom: 1px solid #dcdcdc;" align="center" bgcolor="#ffffff"><input class="text" maxlength="255" size="18" name="q" type="text"> <input alt="Search" ');
document.write('src="http://www.rose-hulman.edu/roseimages/go_button.gif" value="Search" name="image" border="0" type="image"></td>');
document.write('</tr>');
document.write('<form>');
document.write('</form>');
document.write('</table>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td height="1">');
document.write('<p align="center"><font color="#464f56"><img src="http://www.rose-hulman.edu/roseimages/gray_ta06.gif" height="3" width="206"><br>');
document.write('<span style="font-size: 5pt;">&nbsp;</span></font></p>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td height="1">');
document.write('<p align="center"><a href="http://www.rose-hulman.edu/news/articles/2010numberone.htm"><img src="http://www.rose-hulman.edu/roseimages/news3.gif" border="0" height="96" width="200"></a></p>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
