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 flashWindow = window.open(this.href, "flashWin", "resizable=no,width=470,height=410");
	return false;
}