setTimeout ("changePage()", 100);
function changePage() 
{
 if (self.parent.frames.length != 0)
 self.parent.location="http://www.hydromet.com/";
}


browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 4 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)));
stored=null; storedLocation=null;

function load(location)
{
 if (browser)
 {
  image=new Image();
  image.src=location;
  return image;
 }
}

if (browser)
{
 imgsrc = new Array();
 imgsrc[0] = load("/images/index/color/1.1.1.gif");
 imgsrc[1] = load("/images/index/color/1.2.2.gif");
 imgsrc[2] = load("/images/index/color/1.3.2.gif");
 imgsrc[3] = load("/images/index/color/1.4.1.gif");
 imgsrc[4] = load("/images/index/color/1.5.2.gif");
 imgsrc[5] = load("/images/index/color/2.1.1.gif");
 imgsrc[6] = load("/images/index/color/3.1.4.gif");
 imgsrc[7] = load("/images/index/color/4.1.1.gif");
 imgsrc[8] = load("/images/index/color/rus.gif");
}


function show(where,what,feature)
{
 if (browser)
 {
  stored=where;
  storedLocation=document.images[where].src;
  document.images[where].src=eval(what+".src");
  if (feature !='')
  {
   if (document.layers){ document[feature].visibility = "visible"; }
   else 
    if (document.all){ document.all[feature].style.visibility = "visible"; }
  }
 }
}

function hide(thing)
{
 if (browser){ document.images[stored].src=storedLocation; }
 if (thing !='') 
 {
  if (document.layers){ document[thing].visibility = "hidden"; }
  else 
   if (document.all){ document.all[thing].style.visibility = "hidden"; }
 }
}

function makeCool() 
{
 if (browser)
 {
  if(navigator.appName != "Netscape")
  {
   src = event.toElement;
   if (src.tagName == "A") 
   {
    src.oldcol = src.style.color;
    src.style.color = "#871924";
   }
  }
 }
}

    function makeNormal() {
        if (browser)
{       if(navigator.appName != "Netscape"){
        src=event.fromElement;
        if (src.tagName == "A") {
           src.style.color = src.oldcol;
        }
        }
    }
}

