function navFrameWin(s) {
	var nwin = window.open('','SRCH_WIN','height=500,width=500,scrollbars,resizable,status,toolbar');
	nwin.document.writeln('<HTML>');
	nwin.document.writeln('<FRAMESET ROWS="*,5*">');
	nwin.document.writeln('<FRAME SRC="/cgi-bin/framehead">');
	nwin.document.writeln('<FRAME SRC="' + s + '">');
	nwin.document.writeln('</FRAMESET>');
	nwin.document.writeln('</HTML>');
	nwin.document.close();
	nwin.focus();
}