/*
---------------------------------------------------------------------------------------------
	HEADER BAR LINKS: This file sets up the links on the header bar.  Included are: e-mail
	address (which, by the way, changes according to the page being visited), site map,
	about us, and help.

	The header bar is the blue bar just under the tabs.
---------------------------------------------------------------------------------------------
*/

/*
****************************************************
	begin functions for header bar links

		included are:
			- variable e-mail address
			- "site map", "about us", "help"
****************************************************


	function pageEmail(whichPage) {
		var beginEmailData = '<td class="headerBarBold" width="400" height="25" valign="middle" align="center">';
		var beginAnchorEmail = '<a href="mailto:';
		var endAnchorEmail = '@emfsafe.com" class="email">';

		document.write(beginEmailData);
		document.write('E-mail Us: ');
		document.write(beginAnchorEmail + whichPage);		
		document.write(endAnchorEmail);
		document.write(whichPage + '@emfsafe.com');
		document.write(endAnchor);
		document.write(endData);
	}	
*/
	function headerBarLinks() {
		var beginHeadData = '<td class="headerBarLinks" width="180" height="25" valign="middle" align="right">';

		var anchorSiteMap = '<a href="http://futuretechtoday.net/siteMap.htm" class="headerBarLinks">';
		var anchorAboutUs = '<a href="http://futuretechtoday.net/aboutUs.htm" class="headerBarLinks">';
		var anchorHelp = '<a href="http://futuretechtoday.net/help.htm" class="headerBarLinks">';

		document.write(beginHeadData);
		document.write(anchorSiteMap);
		document.write('Site Map');
		document.write(endAnchor);
		document.write(' | ');
		document.write(anchorAboutUs);
		document.write('About Us');
		document.write(endAnchor);
		document.write(' | ');
		document.write(anchorHelp);
		document.write('Help');
		document.write(endAnchor);
		document.write(endData);
	}

/*
**************************************************
	end functions for header bar links
**************************************************
*/