<!--
	var timerRS=null;
	var infoDN=null;

	function swapCaseFolders(id) {
	    if(document.getElementById(id)) {
		var az=document.getElementById(id);
		az.style.visibility=az.style.visibility=='visible'?'hidden':'visible';
		}
	    }
	    
	function swapCaseUl(id) {
	    if(document.getElementById(id)) {
		var az=document.getElementById(id);
		az.style.display=az.style.display=='none'?'block':'none';
		}
	    }

	function resizeInfo(id) {
	    var az=document.getElementById(id);
	    if(az.offsetHeight<az.firstChild.offsetHeight) {
		scrollDown(id);
		}
	    else {
		az.style.height=parseInt(az.firstChild.offsetHeight+4)+'px';
		}
	    }
	
	function showFormInfo(id) {
	    clearInterval(timerRS);
	    if(document.getElementById(id)) {
		var az=document.getElementById(id);
		if(az.style.visibility=='hidden') {
		    az.firstChild.className='case_full';
		    az.style.visibility='visible';
		    az.style.height='0px';
		    if(infoDN!==null) {
			document.getElementById(infoDN).style.visibility='hidden';
			infoDN=null;
			}
		    scrollDown(id);
		    }
		}
	    }

	function scrollDown(id) {
	    if(infoDN!=id) {
		infoDN=id;
		}
	    var az=document.getElementById(id);
	    var px=az.offsetHeight;
	    px=px+8;
	    az.style.height=px+'px';
	    if(px<=az.firstChild.offsetHeight) {
		setTimeout('scrollDown(\''+id+'\');',10);
		}
	    else {
		if(document.layers) {
//		    alert(window.pageYOffset+' NN');
		    }
		else {
//		    alert(document.body.offsetHeight);
		    }
		}
	    }
	    
	function destroyFormInfo(id,ms) {
	    if(!ms) {
		ms=600;
		}
	    timerRS=setInterval('scrollUp(\''+id+'\');',ms);
	    }
	    
	function scrollUp(id) {
	    if(infoDN==id) {
		infoDN=null;
		}
	    clearInterval(timerRS);
	    var az=document.getElementById(id);
	    az.firstChild.className='case_opacity';
	    var px=az.style.height;
	    px=px.substring(0,parseInt(px.indexOf('px')));
	    do_scrollUp(id,px);
	    }
	    
	function do_scrollUp(id,px) {
	    var az=document.getElementById(id);
	    px=px<15?0:px-15;
	    az.style.height=px+'px';
	    if(px>0) {
		setTimeout('do_scrollUp(\''+id+'\','+px+');',10);
		}
	    else {
		az.style.visibility='hidden';
		}
	    }
	    
//-->
