function openFilePopup(loc, width, height)
{
  popup = window.open(''+loc,'_blank','toolbar=no,width='+width+',height='+height+',screenX=15,screenY=15,left=15,top=15,scrollbars=yes,resizable=yes,status=yes,menubar=no');

  popup.focus();
}

function popup_window(loc, width, height, scroll)
{
  popup2 = window.open(loc,'_blank','toolbar=no,width='+width+',height='+height+',screenX=15,screenY=15,left=15,top=15,scrollbars='+scroll+',resizable=yes,status=yes,menubar=no');

  popup2.focus();
}

