var margin_message = 'To print this page, set ALL margins to 0.2 or MINIMUM allowable size';

function printPonyInfo () {
    if(confirm(margin_message)) {
        if (window.print) {
            window.print();
        } else {
            alert('To print this page, press Ctrl P.');
        }
    }
} 