function openWindow(vsFile)
{
  var loWin = window.open(vsFile, '', 'toolbar=no,location=no,directories=no,status=no,menubar=Yes,scrollbars=YES,resizable=YES,width=720,height=480,left=50,top=50');
}

function doSort(viSortOrder)
{
  if (window.document.frmAction != undefined)
  {
    //frameless
    if (window.document.frmAction.hidSortOrder.value != viSortOrder)
      window.document.frmAction.hidSortOrder.value = viSortOrder;
    else
      window.document.frmAction.hidSortOrder.value = viSortOrder + 1;

    window.document.frmAction.submit();
  }
  else
  {
    //frames
    if (window.parent.frames['BusinessPapersHeader'].document.frmAction.hidSortOrder.value != viSortOrder)
      window.parent.frames['BusinessPapersHeader'].document.frmAction.hidSortOrder.value = viSortOrder;
    else
      window.parent.frames['BusinessPapersHeader'].document.frmAction.hidSortOrder.value = viSortOrder + 1;

    window.parent.frames['BusinessPapersHeader'].document.frmAction.submit();
  }
}
//function doValidateLogin()
//{
//  If (document.frmAction.hidLogin.value ="") {
//  doLogOut();
//  }
//}
