window.onerror=null;
browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);

if(browserVer >= 3) ver = "yes";
else ver = "no";
if(ver == "yes")

{

bio1 = new Image(); bio1.src = "images/bio1.gif";
bio2 = new Image(); bio2.src = "images/bio2.gif";

live1 = new Image(); live1.src = "images/live1.gif";
live2 = new Image(); live2.src = "images/live2.gif";

discs1 = new Image(); discs1.src = "images/discs1.gif";
discs2 = new Image(); discs2.src = "images/discs2.gif";

photos1 = new Image(); photos1.src = "images/photos1.gif";
photos2 = new Image(); photos2.src = "images/photos2.gif";

downloads1 = new Image(); downloads1.src = "images/downloads1.gif";
downloads2 = new Image(); downloads2.src = "images/downloads2.gif";

}

function active(imgName)
{
if (ver == "yes")
{
img1 = eval(imgName + "2.src");
document [imgName].src = img1;
}
}

function inactive(imgName)
{
if (ver == "yes")
{
img2 = eval(imgName + "1.src");
document [imgName].src = img2;
}
}

function showStatus(msg) {

window.status = msg;

return true;

}
