function WindowPosCenter(popW, popH)
{
    var h = window.screen.height
    var w = window.screen.width
    var leftPos = (w - popW) / 2;
    var topPos  = (h - popH) / 2;

    //alert("H = " + h + " --- W = " + w)

    return 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos;
}
function WindowPosBottomRight(popW, popH)
{
    var h = window.screen.height
    var w = window.screen.width
    var leftPos = w - popW - 100;
    var topPos  = h - popH - 230;

    //alert("H = " + h + " --- W = " + w)
    //alert("LeftPos = " + leftPos + " --- topPos = " + topPos)

    return 'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos;
}
function TermsPopUp()
{
   var Win=window.open('appfinderTerms.html', 'AppfinderTerms', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,' + WindowPosCenter(680,540));
   Win.focus();
}

