function createRequestObject(){

var req;
var divID;
var totalNo;
var pageNo;

if(window.XMLHttpRequest){
//For Firefox, Safari, Opera
req = new XMLHttpRequest();
}
else if(window.ActiveXObject){
//For IE 5+
req = new ActiveXObject("Microsoft.XMLHTTP");
}
else{
//Error for an old browser
alert('Your browser is not IE 5 or higher, or Firefox or Safari or Opera');
}

return req;
}

//Make the XMLHttpRequest Object
var http = createRequestObject();

function sendRequest(method, url,id,total,pageCt){

divID=id;
totalNo=total;
pageNo=pageCt;
if(method == 'get' || method == 'GET'){
http.open(method,url);
http.onreadystatechange = handleResponse;
http.send(null);
}
}

function handleResponse(){
if(http.readyState == 4 && http.status == 200){
var response = http.responseText;
if(response){

document.getElementById(divID).innerHTML = response;

var hrefNextId=document.getElementById('nextImage');
var hrefPreId=document.getElementById('preImage');
	if(totalNo > (pageNo+1)*5)
	{
	    hrefNextId.innerHTML ='<a style="cursor: pointer;" id="nextImgId" onclick="calNext('+(pageNo+1)+','+totalNo+');" class="nw-debate-nw-head"><img src="images/arrow-r.gif" width="26" height="21"></a>';
	}else
	{
	    hrefNextId.innerHTML ='<a style="cursor: pointer;" id="nextImgId" class="nw-debate-nw-head"><img src="images/arrow-r.gif" width="26" height="21"></a>';
	}
	if((pageNo-1) >= 0 )
	{
	   hrefPreId.innerHTML ='<a style="cursor: pointer;" id="preImgId" onclick="calPre('+(pageNo-1)+','+totalNo+');" class="nw-debate-nw-head"><img src="images/arrow-l.gif" width="26" height="21"></a>';
	
	}

  }
 }     
}

function calNext(pageNo,total){

sendRequest('GET','/mericampaign.do?choice=SubCategoryWithPhotoFeature&catID=4&subCatID=56&photoPageNo='+pageNo+'&noOfRecords=5&photoFeatureTitle=Happy New Year 2010&forwardpath=/newyear/components/campPhoto.jsp','imageDiv',total,pageNo);

}



function calPre(pageNo,total){

sendRequest('GET','/mericampaign.do?choice=SubCategoryWithPhotoFeature&catID=4&subCatID=56&photoPageNo='+pageNo+'&photoFeatureID=2944&noOfRecords=5&photoFeatureTitle=Happy New Year 2010&forwardpath=/newyear/components/campPhoto.jsp','imageDiv',total,pageNo);


}


