// JavaScript Document
window.onload = newWinLinks;

function newWinLinks() {
	if (!document.getElementsByTagName) return false;
	if (!document.getElementById) return false;
	if (!document.getElementById("click_through")) return false;
	var click_link = document.getElementById("click_through");
	var links = click_link.getElementsByTagName("a");
	for (var i=0; i<links.length; i++) {
		links[i].onclick =  newWindow;
	}	
}

function newWindow() {
	var openWindow = window.open(this.href, "What's happening", "resizable=yes,scrollbars=yes,fullscreen=yes");
	openWindow.focus();
	return false;
}

