//masking eMail
function mail_gwdg(User)
{
	 site = 'gwdg.de';
	 document.write("<a href=\'mailto:" + User + "@" + site + "\'>");
	 document.write("eMail"+"</a>");
}
function mail_go(User)
{
	 site = 'gwdg.de';
	 document.write("<area shape=\'rect\' coords=\'189,323,380,347\' href=\'mailto:" + User + "@" + site + "\'>");
}

function mail_mibio(User)
{
	 site = '';
	 document.write("<a href=\'mailto:" + User + "@g2l.bio.uni\-goettingen.de\'>");
	 document.write("eMail"+"</a>");
}

function mail_andere(User, site)
{
	 document.write("<a href=\'mailto:" + User + "@" + site + "\'>");
	 document.write("eMail"+"</a>");
}


//g2l footer
function foot_g2l()
{

 // Get the last modified date
 var now = new Date(document.lastModified);

 // List the days
 var days = new Array('Sunday','Monday','Tuesday','Wednesday',
                       'Thursday','Friday','Saturday');

 // List the months
 var months = new Array('January','February','March','April',
                          'May','June','July','August','September',
                             'October','November','December');

 // What day number is it
 var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();

 // Convert year to four figure format
 function y2k(number){return (number < 1000) ? number + 1900 : number;}

 // Join it all together " " + date + ", " +
 mod =  months[now.getMonth()] +" "+ (y2k(now.getYear())) ;
 

 // write it to the page

document.writeln("<table border='0' width=100%>");

document.writeln("    <tr>");
document.writeln("        <td>&nbsp;</td>");
document.writeln("        <td width='310'>&nbsp;</td>");
document.writeln("        <td width='176'>&nbsp;</td>");
document.writeln("    </tr>");
document.writeln("    <tr>");
document.writeln("        <td colspan='3' bgcolor='#79C1FD' width='1323'><font face='Verdana'><img src='space.gif' width='3' height='3'></font></td>");
document.writeln("    </tr>");
document.writeln("</table>");

document.writeln("<br><table border=0 cellpadding=6 cellspacing=0 width=100%>");

document.writeln("<tr>  <td align=left class=grey > <em>");
document.writeln("<font face=Verdana size=-1>&copy; <a href=mailto:pehrenr@gwdg.de><em>WebTeam</em></a>, <em>last modified: "+mod+" </em></font></td>");
document.writeln("<td><i><font size='-1'><a href='../disclaimer.html' target='_self'>Disclaimer</a></font></i></td>");
document.writeln("</tr> </table>");

} 


