function newWin (link) {
	if (document.getElementById) {
		window.open(link.href);
		return false;
	}
	else {
		return true;
	}
}