// Query 2 remove item
function remove(message, url)
{
  if(confirm(message)) location.href = url;
}

// Open new pop up window
function popup(url, name, width, height, scroll)
{
  if(scroll==1) scroll = 'yes'; else scroll = 'no';
  var popup = window.open(url, name, 'marginheight=0,marginweight=0,toolbar=no,width='+width+',height='+height+',left=20,top=20,resizable=no,scrollbars='+scroll);
  popup.focus();
}
