var barwidth = 215;
var numlinks = 9;

var name  = new Array(numlinks);
var email = new Array(numlinks);
var title = new Array(numlinks);
var phone = new Array(numlinks);



/* BEGIN LIST OF LINKS */

 name[0] = "David Piker";
email[0] = "mailto:david.piker@rose-hulman.edu";
title[0] = "Vice President for<br>Public Relations";
phone[0] = "(812) 877-8441";
       
 name[1] = "Bryan Taylor";
email[1] = "mailto:Bryan.Taylor@rose-hulman.edu";
title[1] = "Director of Publications/<br>Webmaster";
phone[1] = "(812) 877-8258";
       
 name[2] = "Dale Long";
email[2] = "mailto:dale.long@rose-hulman.edu";
title[2] = "Director of News Services";
phone[2] = "(812) 877-8418";
       
 name[3] = "Kevin Lanke";
email[3] = "mailto:kevin.lanke@rose-hulman.edu";
title[3] = "Sports Information<br>Director";
phone[3] = "(812) 877-8180";
       
 name[4] = "Hyung-Jung Chang";
email[4] = "mailto:hyung-jung.chang@rose-hulman.edu";
title[4] = "Web Developer/<br>Publications Specialist";
phone[4] = "(812) 872-6079";
       
 name[5] = "Dee Reed";
email[5] = "mailto:dee.reed@rose-hulman.edu";
title[5] = "Assistant Director of<br>Public Relations";
phone[5] = "(812) 877-8577";
       
 name[6] = "Charity Murphy";
email[6] = "mailto:charity.murphy@rose-hulman.edu";
title[6] = "Assistant to the Vice President<br>and Office Manager";
phone[6] = "(812) 877-8442";
       
 name[7] = "Toll Free Number";
email[7] = "";
title[7] = "";
phone[7] = "1-800-248-7448";
       
 name[8] = "Fax Number";
email[8] = "";
title[8] = "";
phone[8] = "1-812-877-8362";

/* END OF LIST */

for (i=0; i<numlinks; i++) {
	if (email[i].length > 0) {
		document.write('<a href = "' + email[i] + '">');
	}
	document.write('<b><font color="#ffffff" size=2>' + name[i] + '</b></font>');
	if (email[i].length > 0) {
		document.write('</a>');
	}
	document.write('<br><font color="#e2dccd" face="Arial" size="2"><b>');
	if (title[i].length > 0) {
		document.write(title[i] + '<br>');
	}
	document.write(phone[i] + '</b><br><br>');
}