function addBannerEntry(bannerid)
{
	var url = SITE_AJAX_URL+"addBannerView.php?iBannerId="+bannerid;
/*	alert(url);
	return false;*/
	if (window.XMLHttpRequest)
  	{
  		http=new XMLHttpRequest()
  		http.open("GET",url,true)
	  	http.onreadystatechange=giveResponse;
	  	http.send(null)
  	}
	// code for IE
	else if (window.ActiveXObject)
  	{
  		http=new ActiveXObject("Microsoft.XMLHTTP")
    	if (http)
    	{
    		http.open("GET",url,true)
    		http.onreadystatechange=giveResponse;
    		http.send()
    	}
  	}
}
function giveResponse()
{
	if (http.readyState == 4) 
	{	
      	isWorking = false;
    	if (http.responseText.indexOf('invalid') == -1) 
		{
    		var xmlDocument = http.responseXML; 
			var succ = xmlDocument.getElementsByTagName('succ').item(0).firstChild.data;
		
			if(succ == '0'){	
				document.getElementById("errormsg").style.display ='';
				document.getElementById("errormsg").innerHTML = 'Error';
				return false;
			}
		}
	}	
}

