function popup(url,name,attrib)
{
  popupwindow = window.open(url, name, attrib);
  if (window.focus) {popupwindow.focus()}
  return false;
}
