window.onload = newWinLinks;



function newWinLinks() {

	for (var i=0; i<document.links.length; i++) {

		if (document.links[i].className == "newWin") {

			document.links[i].onclick = newWindow;

		}

	}

}



function newWindow() {

	var dentistryWindow = window.open(this.href,"dentistryWin","width=600,height=675,toolbar=yes,left=0,top=50,resizable=yes,addressbar=yes,scrollbars=yes");

	dentistryWindow.focus();

	return false;

}




