var wd=screen.width;
var isNS = (navigator.appName == "Netscape");
if(wd == 800)
{
if(isNS)
document.write('<BODY BACKGROUND=/gifs/bg-sml.gif>');
else
document.body.background = "/gifs/bg-sml.gif";
}
if(wd == 1024)
{
if(isNS)
document.write('<BODY BACKGROUND=/gifs/bg-big.gif>');
else
document.body.background = "/gifs/bg-big.gif";
}
if(wd == 1280)
{
if(isNS)
document.write('<BODY BACKGROUND=/gifs/bg-big1.gif>');
else
document.body.background = "/gifs/bg-big1.gif";
}
