function newWin (element) {
	if (element.href) {
		window.open(element.href);
		return false;
	}
	return true;
}
