function prefNewspaper($prefs)
{
    global $db;
    $formOptions = array('action' => 'preferences/prefsNewspaper.php', 'data' => $prefs, 'files' => true, 'title' => 'Newspaper Basics');
    $prefForm = new Form($formOptions);
    $options = array('field' => 'newspaperName', 'label' => "Newspaper Name", 'description' => 'Name of the host newspaper');
    $prefForm->text($options);
    $options = array('field' => 'newspaperAreaCode', 'label' => "Newspaper Area Code", 'description' => 'Default Area Code for the paper');
    $prefForm->number($options);
    $options = array('field' => 'officeStreetAddress', 'label' => "Office Street Address", 'description' => 'Street address of the office facility.');
    $prefForm->text($options);
    $options = array('field' => 'officeStreetCity', 'label' => "Office City", 'description' => 'City of the office facility.');
    $prefForm->text($options);
    $options = array('field' => 'officeStreetState', 'label' => "Office State", 'description' => 'State of the office facility.');
    $prefForm->state($options);
    $options = array('field' => 'officeStreetZip', 'label' => "Office Zip", 'description' => 'Zip code of office facility.');
    $prefForm->number($options);
    $options = array('field' => 'printingStreetAddress', 'label' => "Printing Street Address", 'description' => 'Street address of the printing facility.');
    $prefForm->text($options);
    $options = array('field' => 'printingStreetCity', 'label' => "Printing City", 'description' => 'City of the printing facility.');
    $prefForm->text($options);
    $options = array('field' => 'printingStreetState', 'label' => "Printing State", 'description' => 'State of the printing facility.');
    $prefForm->state($options);
    $options = array('field' => 'printingStreetZip', 'label' => "Printing Zip", 'description' => 'Zip code of printing facility.');
    $prefForm->number($options);
    $options = array('field' => 'defaultState', 'label' => "Default State", 'description' => 'Default State for all jobs/locations.');
    $prefForm->state($options);
    $prefForm->generate();
}