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 vakası...
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+'');
}

// 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 );
     }
}