// Popup function for use in Admin section

function popup(mylink, windowname, width, height)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width='+width+',height='+height+',status=no,scrollbars=yes,resizable=yes');
return false;
}

function completeDCSOrder() {
  var orderForm = document.getElementById('completeOrder');
  if (orderForm) { orderForm.submit() }
}
