function openwin(winnum,width,height)
{
  im=window.open('','win'+winnum,'top=40,left=40,width='+width+',height='+height+',scrollbars=yes,menu=no,status=yes,resizable=no');
  im.focus();
}

