//==============================================================================================
//
// SCRIPTS THAT DISPLAYS THE HELP PAGE AND THE DETAILS
//
//==============================================================================================
// Date ......... 08/07/2003
// Disclaimer ... © 2003 Mediasoft Technologies, all rights reserved
//==============================================================================================



//----------------------------------------------------------------------------------------------
// Open a popup window with help about the list
//----------------------------------------------------------------------------------------------

function OpenPopup(n) {
  if(n==1)
    window.open("hread.asp", "", "resizable=1,scrollbars=1,menubar=0,toolbar=0,width=545,height=450", true);
  else if(n==2)
    window.open("hread.asp", "", "resizable=1,scrollbars=1,menubar=0,toolbar=0,width=510,height=440", true);
}



//----------------------------------------------------------------------------------------------
// Open a popup window with a company details
//----------------------------------------------------------------------------------------------

function ShowDetails(CompanyId) {
var wh, ww;
  wh = 650;
  if (screen.availHeight < 570) wh = screen.availHeight - 50;
  ww = 720;
  if (screen.availWidth < 670) ww = screen.availWidth - 50;
  v = "resizable=1,scrollbars=1,menubar=1,toolbar=1,status=1,width=" + ww + ",height=" + wh;
  window.open("details.asp?Id=" + CompanyId, "", v, true);
}



// EOF

