//----------------------------------------------------------------------------------

function logo()
{
document.write('<SPAN TITLE="EA Logo">');
document.write('<IMG SRC="pics/EALogoNEW.GIF" WIDTH=283 HEIGHT=63 ALT="EA Logo"></SPAN><BR><BR>');
return;
}

//----------------------------------------------------------------------------------

function glinks(fontVAR,classVAR)
{
document.write('[<A HREF="pages/home.html" CLASS="' + classVAR + '">Home</A>] ');
document.write('[<A HREF="pages/aboutus.html" CLASS="' + classVAR + '">About Us</A>] ');
document.write('[<A HREF="pages/sounds.html" CLASS="' + classVAR + '">Sounds</A>] ');
document.write('[<A HREF="pages/store.html" CLASS="' + classVAR + '">Store</A>] ');
document.write('[<A HREF="pages/gigs.html" CLASS="' + classVAR + '">Gigs</A>] ');
document.write('[<A HREF="pages/news.html" CLASS="' + classVAR + '">News</A>] ');
document.write('[<A HREF="pages/links.html" CLASS="' + classVAR + '">Links</A>] ');
document.write('[<A HREF="pages/contact.html" CLASS="' + classVAR + '">Contact</A>] ');
return;
}

//----------------------------------------------------------------------------------

function ghlinks(fontVAR,classVAR)
{
document.write('<CENTER><TABLE BORDER=3 CELLPADDING=3 CELLSPACING=3 HEIGHT=40 bgcolor=black>');
document.write('<TR><TH><FONT CLASS="' + fontVAR + '2">');
glinks(fontVAR,classVAR);
document.write('</TH></TR></TABLE><BR>');
return;
}

//----------------------------------------------------------------------------------

function gtlinks(fontVAR,classVAR,countfontVAR,counttypeVAR,copyfontVAR,copyyearVAR)
{
if (countfontVAR != "")
{
  document.write('<BR></FONT><FONT CLASS="' + countfontVAR + '1">');
  document.write('You are visitor # <IMG SRC="cgi-sys/counter/hit.pl?user=evarms&id=' + counttypeVAR + '"> to this page.<BR><BR>');
}

document.write('<TABLE BORDER=3 CELLPADDING=3 CELLSPACING=3 HEIGHT=40 bgcolor=black>');
document.write('<TR><TH></FONT><FONT CLASS="' + fontVAR + '2">');
glinks(fontVAR,classVAR);
document.write('</TH></TR></TABLE>');

if (copyfontVAR != "")
{
  document.write('<FONT CLASS="' + copyfontVAR + '1">&copy; ' + copyyearVAR + ' Everlasting Arms Records & Publishing - All Rights Reserved');
}
return;
}

//----------------------------------------------------------------------------------

function contactdude(nameVAR,locationVAR,extensionVAR,classVAR)
{
//var sx = new String("fmgaritlitwos:jeljqexrilwibnxeoehvlanrxmzsq.zcuokm");
  var sx = new String("fmgaritlitwos:");
var s1 = "";
var s2 = "";
var i;
var len = sx.length;
for (i = 1; i < len; i += 2)
{
        s1 += sx.charAt(i);
}
s1 += nameVAR;
s1 += "@";
s1 += locationVAR;
s1 += ".";
s1 += extensionVAR;
s2 += nameVAR;
s2 += "@";
s2 += locationVAR;
s2 += ".";
s2 += extensionVAR;

// do it this way
// document.write('<A HREF="' + s1 + '" CLASS="' + classVAR + '">click here to email Edward</A><br><br>');

// or you can display the address too this way
// document.write('<A HREF="' + s1 + '">' + s2 + '</A>');
document.write('<A HREF="' + s1 + '" CLASS="' + classVAR + '">' + s2 + '</A>');
return;
}

//----------------------------------------------------------------------------------

function contactstore(nameVAR,locationVAR,extensionVAR)
{
var s1 = "";
s1 += nameVAR;
s1 += "@";
s1 += locationVAR;
s1 += ".";
s1 += extensionVAR;

// <input type="hidden" name="business" value="e m ady">
document.write('<input type="hidden" name="business" value="' + s1 + '">');
return;
}

//----------------------------------------------------------------------------------

