function popup(page){
    window.open(page,'temp','width=300,height=200,resizable=yes');
}

function picture(loc,caption,width,rlc){
  html = '';
  html+='<TABLE width=\"'+width+'\" align=\"'+rlc+'\" hspace=\"10\">';
  html+='<TR><TD><IMG src=\"'+loc+'\" width=\"'+width+'\"></TD><TR>';
  html+='<TR><TD class=\"caption\" align=\"right\">'+caption+'</TD></TR>';
  html+='</TABLE>';

  document.write(html);
}

function adduser(name,title,username){
  website='http://www.bio.aps.anl.gov/~'+username+'/';

  html = '';
  html+='<TABLE><TR><TD colspan=2><A href=\"'+website+'\">';
  html+='<IMG src=\"'+website+'default.jpg\" width=\"250\"></A>';
  html+='</TD></TR><TR><TD align=\"left\">';
  html+='<A href=\"'+website+'\" class=\"titlet\">'+name+'</A></TD>';
  html+='<TD align=\"right\" class=\"maint\">'+title+'</TD></TR></TABLE>';

  document.write(html);
}

