
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

// Popup açma vakasy...
var popUp=0;

function popUpWindow(URLStr, left, top, width, height)
{
  if(popUp)
  {
    if(!popUp.closed) popUp.close();
  }
  popUp = open(URLStr, 'popUp', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

// scroller ....
var scrollCounter = 0;
var scrollText    = "Altın Turizm... Adres:Halaskargazi Cad. No:200 Oktay Günaydın Apt. Daire No:8 Osmanbey-Istanbul - Tel: 0212 219 75 75 pbx  Fax: 0212 219 99 19 - E-Mail: fuar@fuarara.com - FuarARA.com bir Altın Turizm Org. Dış Tic. Ltd. Şti. iştirakidir.";
var scrollDelay   = 80;
var i = 0;
while (i ++ < 140)
    scrollText = " " + scrollText;
function Scroller()
{
    window.status = scrollText.substring(scrollCounter++, 
                        scrollText.length);
    if (scrollCounter == scrollText.length)  
        scrollCounter = 0;
    setTimeout("Scroller()", scrollDelay);
}
Scroller();

// tablo goster-kaldir
function ToggleRowDisplay( objTargetButton )
{
     try
     {
          // Variables
          var strDisplay = "block";
          var objTableBody = document.getElementById( objTargetButton );
     
          // Toggle Display
          if( objTableBody.style.display == "block" )
          {
               // Hide
               strDisplay = "none";
          }
     
          // Toggle the table
          objTableBody.style.display = strDisplay;
//		  document.location.href="#genelsart";
         
     }
     catch( expError )
     {
          alert( expError.number + "   " + expError.description );
     }
}