// <script type="text/javascript">

	function popup(url, wdth, hgt, posx, posy) {

        window.open(url, '_blank', 'width='+ wdth + ', height=' + hgt + ', resizable=yes, scrollbars=yes, left=' + posx + ', top=' + posy);
    }

    function fixedWin(url, wdth, hgt, posx, posy) {

        window.open(url, '_blank', 'width='+ wdth + ', height=' + hgt + ', resizable=no, scrollbars=yes, toolbar="no", menubar="no", status="no", left=' + posx + ', top=' + posy);
    }

    function mailer() {
        window.open('mailer.html', '_blank', 'width=1280, height=900, resizable=yes, scrollbars=yes, left=10, top=25');
    }

    function termsWin() {
        window.open('terms.html', '_blank', 'width=900, height=610, resizable=no, scrollbars=yes, toolbar="no", menubar="no", status="no", left=50, top=25');
    }


// </script>