sechlc,
Hmm!
This could be a bit beyond me, as the script uses functions I am not
familiar with.
But the answer to the second question "am I able to move the bar - from the
left to the right of the page?" is easy.
There are these global variables
var persistclose=0 //set to 0 or 1. 1 means once the bar is manually closed,
it will remain closed for browser session
var startX = 30 //set x offset of bar in pixels
var startY = 5 //set y offset of bar in pixels
var verticalpos="fromtop" //enter "fromtop" or "frombottom"
So to position further to the right, set startX to a larger number. I am not
sure how much larger. The bar appears to be 620px wide, so on an 800px wide
screen, 180 would be the maximum.
According to the description, you add this to the body:
<div id="topbar">
<a href="" onClick="closebar(); return false"><img src="close.gif"
border="0" /></a>
Your content here.
</div>
So I would add the hyperlink (to youraddress.com.au/your.html) in place of
"Your content here."
E.G.
<div id="topbar">
<a href="" onClick="closebar(); return false"><img src="close.gif"
border="0" /></a>
<a href="youraddress.com.au/your.html" >Your text</a>
</div>
Doesn't that work?
As this is not my script, I am just guessing. I will try to test it myself.
But by then, you may already have found the answer.