if (isset($_REQUEST['format_action']) && $_REQUEST['format_action'] == 'save') {
    $x = $_GET['x'];
    $y = $_GET['y'];
    $y = $_GET['name'];
    $format->Save_Format($_GET['x'], $_GET['y'], $_GET['name'], $_GET['type']);
}
if (isset($_REQUEST['format_action']) && $_REQUEST['format_action'] == 'delete') {
    $x = $_GET['x'];
    $y = $_GET['y'];
    $format->Save_Format($_GET['x'], $_GET['y'], $_GET['type'], null, null, null, true);
}
if (isset($_REQUEST['format_action']) && $_REQUEST['format_action'] == 'modify_save') {
    $x = $_GET['x'];
    $y = $_GET['y'];
    $format->Save_Format($_GET['x'], $_GET['y'], $_GET['name'], $_GET['type'], $_GET['format_action'], $_GET['old_name']);
}
if (isset($_REQUEST['format_action']) && $_REQUEST['format_action'] == 'get_format') {
    $name = $_GET['name'];
    $selected = $_GET['selected'];
    $format->Get_Format($selected, $name);
}
if (isset($_REQUEST['format_action']) && $_REQUEST['format_action'] == 'get_pressformat') {
    //$name = $_GET['name'];
    $selected = $_GET['selected'];
    $format->get_pressmachine_format($selected);
}
if (isset($_REQUEST['format_action']) && $_REQUEST['format_action'] == 'get_estimate_pressformat') {
    //$name = $_GET['name'];
    $selected = $_GET['selected'];
    $format->get_pressmachine_format($selected, 'pressformat', 'EstimateComponents');
}