You'll find 5gig a bit tight for prolonged use. Though that's enough for the default install.
OK - it sounds like the ntfs partition is still registering active, and Windows has hiccoughed, so you cannot do a clean shutdown. Can you boot Windows into failsafe mode, then shut it down?
Before you resized the ntfs partition, did you
defrag at all? Backup?
Lets see if we can use linux to get that term paper for you...
I'm gonna teach you some commandline stuff.
Find the
terminal in Applications > Accessories - drag the icon to your desktop so it's handy. You'll be using it a lot.
Open the terminal. Cool? You get a white page with a prompt that ends in a $ sign. That's where you type.
sudo mkdir /mnt/winxp
It'll want your password - I don't have to tell you why this is a good thing, right?
This command creates a directory (looks like a folder) so we have someplace to put your windows stuff. Next up, make sure where they all are:
sudo fdisk -l
... this gives you a list. There should be at least three entries - one is labelled "linux", one "swap" and one "ntfs" or "windows". At the start of the ntfs entry is something like hda1 or sda1 or whatever. Stuff like that. Make a note of it.
The next command should put XP where you can reach it... however, there may be errors. If so, I need to see what they say
exactly. Copy them, and the line where you typed in the command, to your reply.
sudo ntfs-3g /dev/hda1 /mnt/winxp
See that hda1 in there? That is supposed to be whatever fdisk said was your windows.
If all goes well, "ls /mnt/winxp" will show you the content of your C:\ drive. You can browse to it with the GUI.
Good luck.