<!--
// JavaScript Document 
// *************************************************************
// This file is a shablon file for showing the language buttons
// *************************************************************

// Three parameteres are the URLs for: 1-st for armenian, 2-th english , 3-nd for russan pages for appropriete page
// 4-th paramert are used for pages with absolute way to images (icons)
function fnlang_armengrus( href_arm, href_eng, href_rus, absol_url, arm )  
{ 		
  if(arm)    tabwidht = 242;
  else       tabwidht = 66;
   
  var str =  "<table width='" + tabwidht + "' height='17' border='0' cellpadding='0' cellspacing='0' align='right'>";
      str += "  <tr align=right>";
  
  if(arm)
    str += "  <td align='left'><a href='http://fonts.tarumian.am/ArianAMU.zip' style='font: normal 8.0pt Arial; color: red;' title='Note: If you do not download Armenian font Arian AMU, it may result in improper display of web-pages.'>Download Armenian font Arian AMU</a></td>";

      str += "  <td width='22'>";
      str += "      <a href=" + href_arm + "><img src='" + absol_url + "images/icon_arm.gif' width='20' height='13' border='0' alt='ARM'></a></td>";
      str += "  <td width='22'>";
      str += "      <a href=" + href_eng + "><img src='" + absol_url + "images/icon_eng.gif' width='20' height='13' border='0' alt='ENG'></a></td>";
      str += "  <td width='22'>";  
      str += "      <a href=" + href_rus + "><img src='" + absol_url + "images/icon_rus.gif' width='20' height='13' border='0' alt='RUS'></a></td>";
      str += "  </tr>";
      str += "</table>";

  document.write(str);
}