// JavaScript Document
startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
this.className=this.className.replace
	(" over", "");
   }
   }
  }
 }
}
window.onload=startList;

function popup(mylink, terms)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, terms, 'width=800,height=800,scrollbars=yes');
return false;
}

function popup(mylink, quoteshirt)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, quoteshirt, 'width=800,height=800,scrollbars=yes');
return false;
}

function popup(mylink, quoteposter)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, quoteposter, 'width=800,height=800,scrollbars=yes');
return false;
}

function popup(mylink, quotedesign)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, quotedesign, 'width=800,height=800,scrollbars=yes');
return false;
}


  if (document.images)
   {
     pic2on= new Image(100,99);
     pic2on.src=" ";
     
     pic2off= new Image(100,99);
     pic2off.src="white.jpg";     
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

