//I am a popup so I want to make sure I am on top when I open
if (window.focus){self.focus()};

//rollover stuff
if (parseInt(navigator.appVersion) >= 3)
{
backbutton = new Image ();backbutton.src = "images/back.gif";
backbutton_r = new Image ();backbutton_r.src = "images/back_r.gif";
nextbutton = new Image ();nextbutton.src = "images/next.gif";
nextbutton_r = new Image ();nextbutton_r.src = "images/next_r.gif";
closebutton = new Image ();closebutton.src = "images/close.gif";
closebutton_r = new Image ();closebutton_r.src = "images/close_r.gif";
}

function rollOn(imgName) {
if (parseInt(navigator.appVersion) >= 3)
{
document.images[imgName].src = eval(imgName + "_r.src")
}}

function rollOff(imgName) {
if (parseInt(navigator.appVersion) >= 3)
{
document.images[imgName].src = eval(imgName + ".src")
}}





