function onClickandCtrl (url, event) {
	if (event.ctrlKey){
		 window.open (url, '_BLANK');
	}else{
		 window.location = url;
	}
}
