/**
 * Custom javascript RTV Rijnmond 
 * Created by Jasper Bugter for Redmax Technology B.V. 2010
 * www.redmax.nl
 * www.rijnmond.nl
 */


// Function for counting links in the site
function HitCountAjax (path, http_url, target) {
	var ajax = new Ajax.Updater({success: ''}, '/Ajax?module=HitCount&method=count&path='+path, {method: 'get'});
	
	if ((target != undefined) && (target == 'Self')) {
		window.location = http_url;
	} else {
		window.open(http_url, "mywindow");
	}
}
