// JavaScript Document
window.onload = newWinLinks;

function newWinLinks() {
	if (!document.getElementsByTagName) return false;
	if (!document.getElementById) return false;
	if (!document.getElementById("logos")) return false;
	var click_link = document.getElementById("logos");
	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, "Do you need a website. Go to www.whitelightwebdesign.com", "resizable=yes,scrollbars=yes,fullscreen=yes");
	openWindow.focus();
	return false;
}
