var israel_page=1;
var loazi_page=1;

function ajax_singles(ddiv,dir)
{
//פונקציה של אג'קס שמפעילה עמוד אייאספי שמחזיר את הסינגלים מהדאטאבייס
  var xmlHttp;
if (ddiv=="israel_singles")
{
	if (dir=="next")
	{
	israel_page++;
	}
	else
	{
	israel_page--;
	}
	if (israel_page<1)
	{
	israel_page=1;
	}
	if (israel_page>5)
	{
	israel_page=5;
	}
}
else
{
	if (dir=="next")
	{
	loazi_page++;
	}
	else
	{
	loazi_page--;
	}
	if (loazi_page<1)
	{
	loazi_page=1;
	}
	if (loazi_page>5)
	{
	loazi_page=5;
	}
}

  try
    {    // Firefox, Opera 8.0+, Safari
	xmlHttp=new XMLHttpRequest();    
    }
    catch (e)
    {    // Internet Explorer
	try
      {      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");      }
    catch (e)
      {      try
        {        xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");        }
      catch (e)
        {        alert("Your browser does not support AJAX!");        return false;        }      }    }


            xmlHttp.onreadystatechange = function()
            {
                if (xmlHttp.readyState == 4)
                {
                document.getElementById(ddiv).innerHTML = xmlHttp.responseText;
                }
            }
if (ddiv=="israel_singles")
	    url = "ajax_singles_il.asp?page=" + israel_page + "&dir=" + dir + "&r="+Math.random();
else
	    url = "ajax_singles_eng.asp?page=" + loazi_page + "&dir=" + dir + "&r="+Math.random();
            xmlHttp.open ("GET",url,true);
            xmlHttp.send (null);
}