// This should be the only hard link!
// var base = "http://sun.cs.lsus.edu/~rmabry/math/"
var base = "../"

function sendmailto0(displayname, pilotname)
{
document.write("<BR><HR><h4><a  HREF =mailto:");
document.write(pilotname + "&#64;" + "Lsus&#46;edu");
document.write("> <IMG SRC=" + base + "misc/envelope.gif   ALIGN=middle>Send mail to ");
document.write(displayname);
document.write("</A> </h4> </p> <HR>");
}


function sendmailto(displayname, pilotname)
{
document.write("<BR><HR><h4 id='sendmail'></h4> </p> <HR>\n");
var elt = document.getElementById("sendmail");
elt.innerHTML = '<a  HREF =mailto:' + pilotname + '&#64;Lsus&#46;edu> ' +
	'<IMG SRC=' + base + 'misc/envelope.gif   ALIGN=middle>Send mail to ' +
displayname + '</A>'; 
}


function facstaff() // not really any more
{
document.write("<p><H5 id='gohome'></H5></p>\n");
var elt = document.getElementById("gohome");
elt.innerHTML = '<A HREF=' + base + ' target=_top>Jump to LSUS Math Department Home Page</A>';
}

function lastupdated()
{
document.writeln("<h6>Last updated on ", document.lastModified,
"</h6><BR><HR>")
}

function contactchair()
{
document.write("<B><FONT SIZE=+1>");
document.write("Chair, Department of Mathematics<BR>");
document.write("One University Place<BR>");
document.write("Shreveport, Louisiana, 71115-2399<BR>");
document.write("(318)797-5377<BR>");
document.write("</FONT></B>");

sendmailto("the Chair of Math/CS", "math");

}


