var hWnd	= "";

function showIdxNav() {
	hWnd		= window.open("popup/popup.html","popup1","width=330,height=330,scrollbars=no");
	hWnd.focus();
}

function showNav() {
	hWnd		= window.open("../popup/popup.html","popup1","width=330,height=330,scrollbars=no");
	hWnd.focus();
}

function showUrl(theUrl) {
	window.opener.location.href		= theUrl;
	self.close();
}


