function sendTo(who,ext,server,addr,attr)
{
	var to;
   
   if (ext == "c") {ext = "com"};
	if (ext == "e") {ext = "edu"};
	if (ext == "n") {ext = "net"};
	if (ext == "o") {ext = "org"};

   to = addr + '@' + server + '.' + ext;
   atag = (attr ? '<a '+attr : '<a');
	document.write(atag + ' href="m' + 'ail' + 't' + 'o:' + to + '">');
	if (who != '') {
   	document.write(who);
   } else { 
   	document.write(to);
   }
	document.write("</a>");
	return true;
}

function unavail() {
	alert('Currently, only the Home, About Us, and Training pages are available.\nPlease check back again soon, and thanks for visiting!');
}

function getCopyright() {
	d = new Date();
   c = 'Site contents copyright 2004 - ' + d.getFullYear() + '; World Wide Open, LLC. - All rights reserved.';
	document.write(c);
}



