// JavaScript Document

function link_click(page, vc, link_el) {
	var link_str = link_el.href;
	var text_str = link_el.innerHTML;
	var	pars = 'vc=' + encodeURIComponent(vc) + '&' + 'page=' + encodeURIComponent(page) + '&' + 'link=' + encodeURIComponent(link_str) + '&' + 'link_text=' + encodeURIComponent(text_str);
	var myAjax = new Ajax.Request(
                                    "ajax/modules/visitors_details/link_click.php",
                                    {
                                                method: 'post',
												parameters: pars
                                    }          );	
}