

function high(which2)
	{
		theobject=which2
		highlighting=setInterval("highlightit(theobject)",50)
	}
function low(which2)
	{
		clearInterval(highlighting)
		which2.filters.alpha.opacity=100
	}

function highlightit(cur2)
	{
		if (cur2.filters.alpha.opacity>0)
		cur2.filters.alpha.opacity-=5
		else if (window.highlighting)
		clearInterval(highlighting)
	}


function ftnOpenPopup(name, height, width)
  {
  openPage = ROOT+"/"+name;
  
  window.open(openPage, "_blank", "");
  }
  
function PopupImage(filename,width,height,sec) 
	{ 
     window.open( ROOT+"/picture.php?filename="+filename+"&sec="+sec, "", "dependent=yes,Width="+width+",Height="+height+",location=no,menubar=no,resizable=yes,scrollbars=yes,toolbar=no"); 
  	} 
function PopupPicFile(picUrl) 
	{ 
     window.open( ROOT+"/popup_pic.php?"+picUrl, "", "resizable=1,HEIGHT=100,WIDTH=100"); 
  	} 
