﻿	var companyId = -1;
	var ActionUrl = "/companyV2/Ajax/MoreSuggestionList.jsp";
	var LogingImg = new Image();
	LogingImg.src = "/images/login/loadingAnimation.gif";
	var bl_showDivId = "otherSuggestion";
	function nextSuggestion(jumpPage)
	{
		
		var postdata = "t26_id="+companyId + "&p="+jumpPage;
		
		$(bl_showDivId).update("<table width='100%' height='100%'><tr><td align='center' valign='bottom'><img src='/images/login/loadingAnimation.gif' /></td></tr></table>");
		new Ajax.Request(ActionUrl,
		{method:'post',postBody:postdata,asynchronous :false,
		onSuccess: function(transport) {
	      var res = transport.responseText;
		  $(bl_showDivId).update(transport.responseText);
		  
	    },
	    onFailure: function(transport)
	    {
	      $(bl_showDivId).update("出現錯誤狀況!!");
	      
	    },
		onComplete: function()
		{
			//$(bl_showDivId).setStyle({height:""});
		}
	  });
	}
	
	
	function showSuggestion(event,id)
{
      var event = event||window.event;
	if(event!=null)
    Event.stop(event);
  var obj = $(id);
  if(obj.style.display=='')
  {
    obj.hide();
  }
  else
  {
    obj.show();
  }
}
