/**
 * @author lucpv
 */
function mailMe() {
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var un = 'lucp';
	var domain = 'mskcc';
	var ext = 'org';
	document.write('<a href="');
	document.write(first+second+third);
	document.write(un);document.write('&#64;');document.write(domain);document.write('.');document.write(ext);
	document.write('" class="nav">');
	document.write('Contact Us</a>');
}
function getNavBar() {
	document.write('<TABLE width=100%><TR><TD id="steel">');
	document.write('<table width="48%" align=left><tr>');
	document.write('<td class="navlogo"><a href="home.html"><img src="img/pinFrame.gif" alt="pinFrame.gif" class="navlogo" width="20"></a></td>');
	document.write('<td id="midCenter"><a href="web/about.jsp" class="nav">About&nbsp;PIN</a></td>');
	document.write('<td id="midCenter"><a href="sitemap.html" class="nav">Site Map</a></td>');
	document.write('<td id="midCenter">');
	mailMe();
	document.write('</td></tr></table><table width="48%" align="right"><tr>');
	document.write('<td id="midCenter"><a href="home.html" class="nav">PIN Home</a></td>');
	document.write('<td id="midCenter"><a href="http://www.ski.edu/tempst" class="nav" target="newPage">Tempst&nbsp;Lab</a></td>');
	document.write('<td id="midCenter"><a href="http://www.mskcc.org/" class="nav" target="newPage">MSKCC</a></td>');
	document.write('<td class="navlogo">');
	document.write('<a href="http://www.mskcc.org/"><img src="logo/mskcc_logo.gif" alt="mskcc_logo.gif" class="navlogo" width="30"></a></td>');
	document.write('</tr></table></TD></TR></TABLE>');	
}
function getServletNavBar() {
	var serverIp = 'http://'+server.host+'/';
	document.write('<TABLE width=100%><TR><TD id="steel">');
	document.write('<table width="48%" align=left><tr>');
	document.write('<td class="navlogo"><a href="');
	document.write(serverIp);
	document.write('home.html"><img src="img/pinFrame.gif" alt="pinFrame.gif" class="navlogo" width="20"></a></td>');
	document.write('<td id="midCenter"><a href="');
	document.write(serverIp);
	document.write('web/about.jsp" class="nav">About&nbsp;PIN</a></td>');
	document.write('<td id="midCenter"><a href="');
	document.write(serverIp);
	document.write('sitemap.html" class="nav">Site Map</a></td>');
	document.write('<td id="midCenter">');
	mailMe();
	document.write('</td></tr></table><table width="48%" align="right"><tr>');
	document.write('<td id="midCenter"><a href="home.html" class="nav">PIN Home</a></td>');
	document.write('<td id="midCenter"><a href="http://www.ski.edu/tempst" class="nav" target="newPage">Tempst&nbsp;Lab</a></td>');
	document.write('<td id="midCenter"><a href="http://www.mskcc.org/" class="nav" target="newPage">MSKCC</a></td>');
	document.write('<td class="navlogo">');
	document.write('<a href="http://www.mskcc.org/"><img src="logo/mskcc_logo.gif" alt="mskcc_logo.gif" class="navlogo" width="30"></a></td>');
	document.write('</tr></table></TD></TR></TABLE>');	
}