function doAccLog(vgr_tieupId,vgr_stepNo,vgr_areaCode,vgr_countryCode,vgr_cityCode,vgr_hotelNo){
 var access_point    = "/hotelinfo/bsrch/aftLinkCount.do";
 
 var vgr_title           = document.title;
 var vgr_url             = document.URL;
 
 new Ajax.Request(access_point , { method:'post',
	 parameters: {
	 'vgr_tieupId' : vgr_tieupId,
	 'vgr_stepNo' : vgr_stepNo,
	 'vgr_areaCode' : vgr_areaCode,
	 'vgr_countryCode' : vgr_countryCode,
	 'vgr_cityCode' : vgr_cityCode,
	 'vgr_hotelNo' : vgr_hotelNo,
	 'vgr_title' : vgr_title,
	 'vgr_url' : vgr_url
 	}
	});
}

