<!--
function ClientBrowse() {
if (self.screen) { this.w=screen.width; this.h=screen.height; }
else if (self.java) { jkit=java.awt.Toolkit.getDefaultToolkit(); scrsize=jkit.getScreenSize(); this.w=scrsize.width; this.h=scrsize.height; }
return this; }
function OpenWin(url,nwin,widthWin,heightWin,sbar) { page=new ClientBrowse();
if (widthWin) { leftPos=(page.w-widthWin)/2; } else { widthWin=page.w-100; leftPos=(page.w-widthWin)/2; }
if (heightWin) { topPos=(page.h-heightWin)/2; } else { heightWin=page.h-100; topPos=25; }
(sbar)?null:sbar=1; (nwin)?null:nwin="help";
property="left="+leftPos+",top="+topPos+",width="+widthWin+",height="+heightWin+",scrollbars="+sbar; window.open (url,nwin,property); }
function OpenWinImage(id,w) { url="/cgi-bin/view.pl?id="+id; pr="left=20,top=20,width="+(w+14)+",height=358,scrollbars=0"; wn=window.open(url,"lpic",pr); wn.focus();}

//-->

