function popup()
{

    popupSizeChart();
    popupTerms();
    print();

    function popupSizeChart()
    {

        $("#SizeChart").click(function(){
            var centerWidth = (window.screen.width - 350) / 2;
            var centerHeight = (window.screen.height - 300) / 2;
            window.open( $(this).attr( "href" ), "SizeChart", "menubar=0,location=0,status=0,width=350,height=300,resizable=0,top="+centerHeight+",left="+centerWidth );
        });

    }

    function popupTerms()
    {

        $(".Terms").click(function(){
            var centerWidth = (window.screen.width - 350) / 2;
            var centerHeight = (window.screen.height - 500) / 2;
            window.open( $("#TermsPopup").attr( "href" ), "Terms", "menubar=0,location=0,status=0,width=350,height=500,resizable=0,scrollbars=1,top="+centerHeight+",left="+centerWidth );
        });

    }

    function print()
    {

        $("#Print").click(function() {
            window.print();
        });

    }

}