function InsertWebLog(PageId)
{
	var Url = '/Law/WebLogs.aspx';
	var code;
	
	Url = Url + '?u=' + escape(window.location.pathname);
	Url = Url + '&q=' + escape(window.location.search);
	Url = Url + '&p=' + escape(PageId);
	//Url = Url + '&fkhan=123';


	code = '<img src="' + Url + '" width="0" height="0" style="display: none;" id="WebLogsImg" />';
	
	//alert(code);
	document.write(code);
}
