
// popup windows
function popup_win(url, win_width, win_height)
{
  window.open(url,'','top=50,left=20,width=' +win_width+ ',height=' +win_height+ ',scrollbars,resizable');
}

