
	var bl_showDivId ="blShowDiv";
	var bl_postBody;
	var bookmarkActionUrl = '/bookmark/AjaxBookLeaning.jsp';
	function setBookMarkActionUrl(url)
	{
		bookmarkActionUrl = url;
	}
	function getBookLeaning(jumpPage)
	{
		var postdata = encodeURI(bl_postBody) + "&_condition=&jumpPage="+jumpPage;
		
		var dime = $(bl_showDivId).getDimensions();
		$(bl_showDivId).setStyle({height:dime.height+"px"});
		
		
		var LogingImg = new Image();
		LogingImg.src = "/images/login/loadingAnimation.gif";
		$(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(bookmarkActionUrl,
		{method:'post',postBody:postdata,asynchronous :false,
		onSuccess: function(transport) {
	      var res = transport.responseText;
		  $(bl_showDivId).update(transport.responseText);
		  
	    },
	    onFailure: function(transport)
	    {
	      $(bl_showDivId).update("¥X²{¿ù»~ª¬ªp!!");
	      
	    },
		onComplete: function()
		{
			$(bl_showDivId).setStyle({height:""});
		}
	  });
	}

	function setBookLeaning(companyId,COMMENT1,COMMENT2,KZ,showDivId)//str,str,str,str,str
	{
		bl_postBody = "companyId="+companyId+"&COMMENT1="+COMMENT1+"&COMMENT2="+COMMENT2+"&KZ="+KZ;
		bl_showDivId = showDivId;
	}
	
	
	
	

