try lilo or grub they are linux boot loaders
there are lots of others but these are the most supported
a simple google.com search will pull lots of info
keep an eye on your boot up with fedora 1st thing youll see is either
grub or lilo
now we need to find where your hard drive is
primary master = /dev/hda (ide1 master)
secondary master = /dev/hdc (ide2 master)
scsi or sata drives would be sda or sdb
if lilo you need to edit /etc/lilo.conf
boot=/dev/hdX
where X is your hard drive
you will need to be root to edit this
once you have your proper hard drive recognized
at a prompt type
lilo
you hopefully wont get errors
if you use grub
at prompt type
grub-install /dev/hdX
where X represents your drive
or if you dont want linux to take over mbr you can
run this
dd if=/dev/fd0 of=/home/USER/linux.bin bs=512 count=1 <change USER to your username<<<<
copy the file named linux.bin to a floppy or email it to yourself to get it into windows
place linux.bin in C:
open C:\boot.ini
make it look like
[boot loader]
timeout=30
default=multi(0)disk(0)rdisk(0)partition(1)\WINNT
[operating systems]
multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows 2000 Professional" /fastdetect
c:\boot.lnx="fedora"
theres a whole world of info on this
http://www.google.com/search?q=linux...&start=10&sa=N
if you want to learn linux learn command line
& use google its the best encyclopedia on anything