function get_items()
{
	var thePage = window.location.href;
    var str_URL;  
             if(thePage.indexOf('?')!==-1 )
               {
                 thePage=thePage.split("?");
			
				 if (thePage[1].indexOf("itemsection")>=0)
				 {
					str_URL = thePage[1];
					 
				 }
				 else
				 {
					 str_URL = "itemsection=0";
					 
				 }
			   }
			 
			  if(window.ActiveXObject)  //for IE
			   {
				   var httpOb=new ActiveXObject("Msxml2.XMLHTTP");
				   var url = "inc/incfilterspecials.asp?"+str_URL;
				   httpOb.open("POST",url,false);
				   httpOb.send();
				   document.getElementById("ItemFilter").innerHTML=httpOb.responseText;
				}
					  
					  
			  else if(window.XMLHttpRequest) //for mozilla
				  {
				  
					 var httpOb=new XMLHttpRequest();
					// httpOb.overrideMimeType('text/xml');
					var url = "inc/incfilterspecials.asp?"+str_URL;
					//request.onreadystatechange=handleResponse;
					 httpOb.open('GET',url,false);
					 httpOb.send(null);
					//alert(httpOb.responseText);
			     document.getElementById("ItemFilter").innerHTML=httpOb.responseText;
				  return false;
				 }
				 //showhide(divID);
			
}