// JavaScript Document
function ShowTelephoneUp(my_id)
{
  $("div#phones_top").show();

  $("div#phones_top").text("");
  
  var tel = $("#"+my_id).html();

  $("div#phones_top").html('<span id="up" style="display: none;">'+tel+'</span>');
  $('span#up').slideDown(1000);
}

function ShowTelephoneDown(my_id)
{
  $("div#phones_foot").show();
  
  $("div#phones_foot").text("");
  
  var tel = $("#"+my_id).html();
  
  $("div#phones_foot").html('<span id="down" style="display: none;">'+tel+'</span>');
  $('span#down').slideDown(1000);
}

function showinfo(value,id, count)
{
    document.getElementById('tel').innerHTML= value;
    
    for (var i=1;i<=(count);i++)
    {
        document.getElementById(i).className = 'main_tel';    
    }
    
    document.getElementById(id).className = 'first_tel';
}

function showindetail(id)
{
    popup = window.open("/offices/index.php?id="+id, 'InDetail', "copyhistory=no,directories=no,menubar=no,location=no,resizable=no,scrollbars=yes,width=650,height=680");
    popup.focus();        
}
