I'll assume that the problem is with the first partition (/dev/sda1). If this is not the case then the skip value will need to be altered to be the correct starting sector for the boot partition.
Then we will need copies of the Master Boot Record and the NTFS Partition Boot Record.
You can capture the Master Boot Record in a file with the following command:
NOTE: Be extra careful to type this command in properly, otherwise loss of data could result.
dd if=/dev/sda of=sda-noothaas.mbr bs=512 count=1
where sda-noothaas.mbr is the name of the file that will need to be uploaded.
You can capture the NTFS Partition Boot Record in a file with the following command:
NOTE: Be extra careful to type this command in properly, otherwise loss of data could result.
dd if=/dev/sda of=sda1-noothaas.pbr bs=512 count=1 skip=63
where sda1-noothaas.pbr is the name of the file that will need to be uploaded.
Then upload these files to a media sharing site, such as mediafire, and post the link to these files in this forum post.