thanks, I found that also, but still nowhere on what speed I should be "talking" at. I added a "board" listing and named it PL2303 and edit it as I find new things. I've changed the baud to 57600 but haven't tried it yet.
Your really don't need to define a new board type. The PL2303 USB converter module will work just fine using the existing Arduino Duemilanove w/ ATmega328 as the board type. If you some reason you do feel the need to create a new board type, below is the details that the Dumilanove bootloader uses.
Lefty
##############################################################
atmega328.name=Arduino Duemilanove w/ ATmega328
atmega328.upload.protocol=arduino
atmega328.upload.maximum_size=30720
atmega328.upload.speed=57600
atmega328.bootloader.low_fuses=0xFF
atmega328.bootloader.high_fuses=0xDA
atmega328.bootloader.extended_fuses=0x05
atmega328.bootloader.path=atmega
atmega328.bootloader.file=ATmegaBOOT_168_atmega328.hex
atmega328.bootloader.unlock_bits=0x3F
atmega328.bootloader.lock_bits=0x0F
atmega328.build.mcu=atmega328p
atmega328.build.f_cpu=16000000L
atmega328.build.core=arduino
atmega328.build.variant=standard
##############################################################