﻿function orderB(submitTo)
{
    //alert('orderB() begin');

    var _form = document.createElement("form");
    _form.setAttribute("method", "post");
    _form.setAttribute("action", submitTo);
    _form.setAttribute("target", "_blank");
    
    var _hid = document.createElement("input");
    _hid.setAttribute("name", "b5");
    _hid.setAttribute("id", "b5");
    _hid.setAttribute("value", "true");
    
    _form.appendChild(_hid);
    document.body.appendChild(_form);
    _form.submit();
    
    //alert('orderB() end');
}
