function newWinLinks() {
	if (!document.getElementById) return false;
	if (!document.getElementById("flashLink")) return false;
	var flashLink = document.getElementById("flashLink");
	/*alert("hello");*/
	flashLink.onclick = newWindow;
}

function newWindow() {
	var flashWindow = window.open("http://www.michaeljamesgallagher.co.uk/flash/", "flashWin","scrollbars=yes,resizable=yes,width=1024,height=900");
	return false;
}

addLoadEvent(newWinLinks);