<!-- 
browser_name = navigator.appName; 
browser_version = parseFloat(navigator.appVersion); 

if (browser_name == "Netscape" && browser_version >= 3.0) { roll = 'true'; } 
else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 3.0) { roll = 'true'; } 
else { roll = 'false'; } 

function load(location){ 
return image; 
} 

if (roll == 'true'){ 
tr=new Image(); 
tr.src="http://www.lysogorov.wisco.info/img/h.gif"; 
} 

function show(where){ 
if (roll == 'true'){ 
stored=where; 
storedLocation=document.images[where].src; 
document.images[where].src="/img/h.gif"; 
} 

} 

function hide(){ 
if (roll == 'true') document.images[stored].src=storedLocation; 
} 



// -->

  function imgSwitch(n,w){        
	w = ( w!=null ? w : window);
	tmp = w.document.images[n].lowsrc;
       w.document.images[n].lowsrc = w.document.images[n].src;
        w.document.images[n].src = tmp;        return true;
   }    //-->

<!--
    var pos = 602;
    var flag = (navigator.userAgent.indexOf("MSIE")>=0 && parseInt(navigator.appVersion)>=4)||(navigator.appName.indexOf("Netscape")>=0 && parseInt(navigator.appVersion)>=5);
    function Scroll()
    {    if (pos < -700) {pos = 602;}
   document.layers["layer0"].layers["layer1"].left=pos;
    pos--;
    setTimeout("Scroll();",20);
    }
    //-->






function makevisible(cur,which){
strength=(which==0)? 1 : 0.2

if (cur.style.MozOpacity)
cur.style.MozOpacity=strength
else if (cur.filters)
cur.filters.alpha.opacity=strength*100
}

