You are missing spaces, and using the wrong attribute (id), for example:
Code:
<li><a href="http://www.snackz.co.uk/OrkneyAndShetland/Kirkwall/KirkwallPubs.php"target id="CentreFrame">Pubs & Bars</a></li>
should be:
Code:
<li><a href="http://www.snackz.co.uk/OrkneyAndShetland/Kirkwall/KirkwallPubs.php" target="CentreFrame">Pubs & Bars</a></li>
For this to work, the name attribute of the center frame must be CentreFrame. Any difference in spelling or upper and lower case letters and it will not work. You cannot use the id attribute, it must be the name attribute.
I see you have:
Code:
<frame src="home/HomeMainContent.php" noresize="noresize" id="CentreFrame"/>
It should be:
Code:
<frame src="home/HomeMainContent.php" noresize="noresize" name="CentreFrame"/>
In short, the target attribute of the link must be the same as the name attribute of the frame you want the link to open in.
Bookmarks