function openLegal() {
	var legal = window.open('disclaimer.html','LegalWin','width=420,height=365,scrollbars=no,directories=no,resizable=no,location=no,status=no,menubar=no,toolbar=no');
	legal.moveTo(50,50);
	legal.focus();
}

function openLinks() {
	var tracks = window.open('externallink.php','linksWin','width=800,height=550,scrollbars=yes,directories=yes,resizable=yes,location=yes,status=no,menubar=yes,toolbar=yes');
	tracks.focus();
}

function openMap(mapAddress) {
	var tracks = window.open(mapAddress,'mapWin','width=800,height=550,scrollbars=yes,directories=yes,resizable=yes,location=yes,status=no,menubar=yes,toolbar=yes');
	tracks.focus();
}