// JavaScript Document
function getXmlObject(){
	var xmlHttp = null;
	// Internet Explorer    
	try{   
		xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");      
	}catch (e){}    
	
	if(xmlHttp == null){
		try{
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");        
		}catch (e){}
	}
		
	if(xmlHttp == null){
		try{    
			// Firefox, Opera 8.0+, Safari    	
			xmlHttp = new XMLHttpRequest();    
		}catch (e){}
	}
	
	return xmlHttp;
}

function showVendreList(pos,currentPage,stratPage){
	var xmlHttp = getXmlObject();
  	if(xmlHttp == null)
		alert("Your browser does not support AJAX!");        
				
    xmlHttp.onreadystatechange=function(){
    	if(xmlHttp.readyState==4){
			document.getElementById("search").innerHTML=xmlHttp.responseText;
        }
    }
	
    xmlHttp.open("GET","a-vendren_search.php?pos="+pos+"&currentPage="+currentPage+"&stratPage="+stratPage,true);
    xmlHttp.send(null);  	
}

function showLouerList(pos,currentPage,stratPage){
	var xmlHttp = getXmlObject();
  	if(xmlHttp == null)
		alert("Your browser does not support AJAX!");        
				
    xmlHttp.onreadystatechange=function(){
    	if(xmlHttp.readyState==4){
        	document.getElementById("search").innerHTML=xmlHttp.responseText;
        }
    }
    xmlHttp.open("GET","a-louer_search.php?pos="+pos+"&currentPage="+currentPage+"&stratPage="+stratPage,true);
    xmlHttp.send(null);  	
}


function showImages(images){
	var url = 'popup_image.php?images='+images;
	var h = 500;
	var w= 500;
	window.open (url, 'newwindow', 'height='+h+',width='+w+', toolbar=no, menubar=no, scrollbars=yes, resizable=no,location=no, directories=no, status=no');
}

function nextImage(val, images, imgNo){
	val = imgNo + val;
	parent.location = "popup_image.php?val="+val+"&images="+images;
}