// Translation JavaScript using Babel Fish

// espanol (spanish) es
function goSpanish() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_es' target=translate>");
  document.write("<img src='bowling/spanish.gif' alt='Spanish' width='36' height='23' border='0'>");
  document.write("</a>");
}

// portuguese pt
function goPortuguese() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_pt' target=translate>");
  document.write("<img src='bowling/portuguese.gif' alt='Portuguese' width='36' height='23' border='0'>");
  document.write("</a>");
}

// italian it
function goItalian() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_it' target=translate>");
  document.write("<img src='bowling/italian.gif' alt='Italian' width='36' height='23' border='0'>");
  document.write("</a>");
}

// french fr
function goFrench() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_fr' target=translate>");
  document.write("<img src='bowling/french.gif' alt='French' width='36' height='23' border='0'>");
  document.write("</a>");
}

// korean ko
function goKorean() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_ko' target=translate>");
  document.write("<img src='bowling/korean.gif' alt='Korean' width='36' height='23' border='0'>");
  document.write("</a>");
}

// japanese ja
function goJapanese() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_ja' target=translate>");
  document.write("<img src='bowling/japanese.gif' alt='Japanese' width='36' height='23' border='0'>");
  document.write("</a>");
}

// deutch (german) de
function goGerman() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_de' target=translate>");
  document.write("<img src='bowling/german.gif' alt='German' width='36' height='23' border='0'>");
  document.write("</a>");
}

// zh (chinese)
function goChinese() {
  var URL = location.href;
  document.write("<A href='http://babelfish.altavista.com/babelfish/tr?doit=done&url="+URL+"&lp=en_zh' target=translate>");
  document.write("<img src='bowling/chinese.gif' alt='Chinese' width='36' height='23' border='0'>");
  document.write("</a>");
}
