Event.observe(window, 'load', ajaxAccess);



function ajaxAccess(){
	var tarUrl = location.href;
	var tarNum = tarUrl.match(/\d+/);
	var tarRighttype = tarUrl.match(/cr|pt|ds|tm|uc|um/);
	
	var reqUrl = '/precedentlog.php?rightType='+tarRighttype+'&precedentNum='+tarNum
	
	
	new Ajax.Request(reqUrl);

	};
