function LOGGER_OUT_log() {
	var ajax = new QW_AJAX;
	ajax.get('index.php5?module=logger_out_ajax&url='+escape(this.href), null, false);
}

function LOGGER_OUT_init() {
	var l = document.links;
	if (typeof l == 'undefined')
		return;

	for ( var i = 0; i < l.length; i++) {
		if ( typeof l[i].href != 'undefined' &&
			l[i].href.indexOf('http://') == 0 &&
			l[i].href.indexOf('http://www.fanhentai') == -1 &&
			l[i].href.indexOf('http://fanhentai') == -1 &&
			l[i].href.indexOf('javascript:') != 0 ) 
		{
			QW_EVENT_addOnmousedown(LOGGER_OUT_log, l[i]);
		}
	}
}

QW_EVENT_addOnload(LOGGER_OUT_init);
