	function PageUpdatedStore(town_id, page)
	{
		CallAjax("../town/updated.store.ajax.php?town_id=" + town_id + "&page=" + page, "DisplayUpdatedStore(responseText)");
	}

	function DisplayUpdatedStore(text)
	{
		var target = document.getElementById("updated_store");
		target.innerHTML = text;
	}

	function PageCategoryBestStore(category_id, page)
	{
		CallAjax("../town/store.best.list.ajax.php?category_id=" + category_id + "&page=" + page, "DisplayCategoryBestStore(responseText)");
	}

	function DisplayCategoryBestStore(text)
	{
		var target = document.getElementById("best_store");
		target.innerHTML = text;
	}

   function Bookmark(book_town_id, user_id, book_page, type)
   {      
		  CallAjax("/town/bookmark.store.list.ajax.php?page=" + book_page+ "&town_id="+ book_town_id+ "&user_id="+ user_id + "&type="+type, "DisplayBookmark(responseText)");
   }

   function DisplayBookmark(text)
   {	
		  var target = document.getElementById("bookmark_list");
		  target.innerHTML = text;
   }


   function PageBestBookmark(book_town_id, user_id, book_page)
   {          
		  CallAjax("/town/bookmark.best.list.ajax.php?page=" + book_page+ "&town_id="+ book_town_id+ "&user_id="+ user_id, "DisplayBestBookmark(responseText)");
   }

   function DisplayBestBookmark(text)
   {  
		  var target = document.getElementById("bookmark_best");
		  target.innerHTML = text;
   }

   function Bestseller_Interpark(book_page)
   {      
		  CallAjax("/town/bestseller.interpark.ajax.php?page=" + book_page, "DisplayBestseller_Interpark(responseText)");
   }

   function DisplayBestseller_Interpark(text)
   {  
		  var target = document.getElementById("bestseller");
		  target.innerHTML = text;
   }

   function PostTownList(page,town_id,town_name)
   {      
		 
		  CallAjax("/inc/post.town.ajax.php?page=" + page+ "&town_id="+town_id+"&town_name="+encodeURI(town_name),"DisplayPostTown(responseText)");
				 
   }
   function DisplayPostTown(text)
   {
		  var target = document.getElementById("post_town_list");
		  target.innerHTML = text;
   }