Thanks very much.
I am now asking one final question for a mate who is having a go at a website in Microsoft Publisher (weird choice I know).
He is stuck on hyperlinks too and has come across a way of getting it to open pages in a new popup window by using the following
HTML code:
<script language="JavaScript" type="text/javascript">
<!--
function Show(Url, Name, Features)
{
window.open(Url, Name, Features);
}
// -->
</script>
and then using:
javascript
:Show('
http://consoles.freebiejeebies.co.uk/18259', 'newwindow', 'menubar=yes, toolbar=yes, location=yes, directories=yes, status=yes, scrollbars=yes, resizable=yes')
for the hyperlinks themselves.
What he wants to do is get the links to open in a new tab rather than a popup window and wants to know if he can do that using his method.
Thanks.