function popup(URL)  {
  newWin = window.open(URL,'popup','height=450,width=530');
  newWin.focus();
}

function popup_big(URL)  {
  newWin = window.open(URL,'popup','height=600,width=816,scrollbars=yes');
  newWin.focus();
}

