<!--
// This page will go at the end of every page //
document.writeln('<div>');
document.writeln('<br>');
document.writeln('<hr ALIGN=LEFT SIZE=1 NOSHADE WIDTH="100%">');
document.writeln('<center>');
document.writeln('<TABLE width="95%" cellpadding="3" cellspacing="3">');
document.writeln('<TR>');
document.writeln('<TD VALIGN="top" ALIGN="left"><a href="http://www.ieccjapan.com/" target= "_parent"><b><SPAN class="footerlink">Home</SPAN></b></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="about.htm" target= "_parent"><SPAN class="footerlink">About Us</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="statistics.htm" target= "_parent"><SPAN class="footerlink">Statistics</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="ieccsched.htm" target= "_parent"><SPAN class="footerlink">Schedule</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="members.htm" target= "_parent"><SPAN class="footerlink">Members</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="reports.htm" target= "_parent"><SPAN class="footerlink">Match Reports</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="photos.htm" target= "_parent"><SPAN class="footerlink">Photos</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="archives.htm" target= "_parent"><SPAN class="footerlink">Archives</SPAN></a></TD>');
document.writeln('</TR>');

document.writeln('<TR>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="kantocup.htm" target= "_parent"><SPAN class="footerlink">Kanto League</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="pacificcup.htm" target= "_parent"><SPAN class="footerlink">Pacific Cup</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="tournaments.htm" target= "_parent"><SPAN class="footerlink">Tournaments</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="grounds.htm" target= "_parent"><SPAN class="footerlink">Grounds</a></SPAN></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="clubs.htm" target= "_parent"><SPAN class="footerlink">Other Clubs</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="news.htm" target= "_parent"><SPAN class="footerlink">News</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="columns.htm" target= "_parent"><SPAN class="footerlink">Columns</SPAN></a></TD>');
document.writeln('<TD VALIGN="TOP" ALIGN="left"><A HREF="javascript:contact()"><SPAN class="footerlink">E-mail us</SPAN></a></TD>');
document.writeln('</TR>');

document.writeln('</TABLE>');
document.writeln('</center>');
document.writeln('</div>');

function contact()
{
  //hide the mail id from preying eyes!
  mail_str = "mailto:" ;
  mail_str += "ieccjapan@" ;
  mail_str += "yahoo.com" ;
  mail_str += "?subject=Comments for I.E.C.C ";
  mail_str += "&body=Reference page: ";
  mail_str += location.href; 
  location.href = mail_str;
}

function feedback()
{
  mail_str = "mailto:dsauthors@fmr.com" ;
  mail_str += "?subject=Comments for dmws.fmr.com: ";
  mail_str += "&body=Reference page: " + document.title;
  mail_str += " at: " + location.href; 
  location.href = mail_str;
}

function f_sendmail(request)
{ 
  var mail_str;
  var body;

  //this fun. is called from the feedback page. Also shows another way to send mail from a Submit Form. 
  //The other method can be seen in the above functions(use location.href).

  mail_str = "mailto:" ;
  mail_str += "ieccjapan@" ;
  mail_str += "yahoo.com" ;
  with (document.World) {
    body = "Name: " + Name.value
    body += ", Email: " + Email.value
    body += ", Home Page: " + HomePage.value
    body += ", Country: " + Country.value
    body += ", Comments: " + Comments.value
  }
  document.forms[0].action=mail_str + "?subject=" + request + "&body=" + body
}

//-->