function openBlank(link) {
	var newWindow = window.open(link, '_blank');
	if (newWindow!=null) newWindow.focus();
}
