// Load a new page into the creator's window
function loadPage(loc) {
	if (!opener)
		creator.location = loc;
	else	opener.location = loc;
}

// Close the navigation window
function closeWin() {
	window.close(self);
}

