// JavaScript for popup windows.

function PopUp_TermsOfUse(RelPath)
{
  var TermsOfUse = window.open(RelPath + "TermsOfUse/TermsOfUse.asp", "TermsOfUse", "width=568,height=500,toolbar=no,location=no,status=yes,resizable=yes,scrollbars=yes");
 
  if (TermsOfUse != null)
    TermsOfUse.focus()
}

/*
function PopUp_TermsOfUse_HOME()
{
  var TermsOfUse = window.open("TermsOfUse/TermsOfUse.asp", "TermsOfUse", "width=568,height=500,toolbar=no,location=no,status=yes,resizable=yes,scrollbars=yes");
 
  if (TermsOfUse != null)
    TermsOfUse.focus()
}

function PopUp_TermsOfUse_deep()
{
  var TermsOfUse = window.open("../../TermsOfUse/TermsOfUse.asp", "TermsOfUse", "width=568,height=500,toolbar=no,location=no,status=yes,resizable=yes,scrollbars=yes");
 
  if (TermsOfUse != null)
    TermsOfUse.focus()
}

*/