function openAcceptMessage( name )
{
    window.open("http://www.fundblast.com/agreements/" + name, "Agreement", "height=820px, width=1050px, scrollbars=yes, directories=no, location=no, menubar=no, resizable=yes, status=no, toolbar=no");
    //window.open("http://localhost:8080/cyf2/agreements/" + name, "Agreement", "height=800px, width=800px, scrollbars=yes, directories=no, location=no, menubar=no, resizable=yes, status=no, toolbar=no");
}

function printCupon()
{
    wnd = window.open("", "Print", "left=50,top=50,resizable=1,width=1024px,height=760px");

    wnd.document.writeln('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
    wnd.document.writeln('<html xmlns="http://www.w3.org/1999/xhtml">');
    wnd.document.writeln('<head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"/><title>Print</title></head>');
    wnd.document.writeln('<body><div>');

    //85.60pt-53.98pt
    wnd.document.writeln('<img src="' + document.getElementById('ad-image').src + '" style="border: 1px dotted red; width: 6.8in"/>');
    wnd.document.writeln('<p/>');
    wnd.document.writeln('<a href="javascript:window.print()">Print</a>');
    //wnd.document.writeln('<a href="javascript:window.print();"><img src="./cyf2/image/print.gif" alt="Print"/></a>');

    wnd.document.writeln('</div>');
    wnd.document.writeln('</body>');
    wnd.document.writeln('</html>');
    wnd.document.close();
}

function numbersOnly( event ) {

    var keynum;

    if( window.event ) { // IE
        keynum = event.keyCode;
    }
    else if( event.which ) { // Netscape/Firefox/Opera
        keynum = event.which;
    }

    if( keynum == null )
        return true;

    // Possible numbers or 'backspace' only

    return (keynum >= 48 && keynum <= 57) || keynum == 8 || keynum == 9 || keynum == 46 || keynum == 37 || keynum == 39;
}

// Show the document's title on the status bar
window.defaultStatus = document.title;
