function PintarPager(){
 if (Object("TotalGrid").value!=0){
 lHtml = "Encontrados "+Object("TotalGrid").value+" inmuebles.<br>"
 lNumPages = Object("TotalGrid").value / 10;
 if (lNumPages>1){
  lPath=window.location.href;
  lHtml += "Ir a:"
  if (lPath.indexOf("&P=")!=-1){
   lPath=Left(lPath,lPath.indexOf("&P="));}
  for (i=0;i<lNumPages;i++){
   lHtml += "&nbsp; <a href=\""+lPath+"&P="+(i+1)+"\">"+(i+1)+"</a>";}}
 Object("divPager").innerHTML=lHtml;}}

