
function lIterator(listElement,delay)
  { /* Constructor */ 
  for(var i=listElement.childNodes.length-1; i>=0; i--) 
	    if(!/li/i.test(listElement.childNodes[i].nodeName))
		    listElement.removeChild(listElement.childNodes[i]);
			for(var i=1; i<listElement.childNodes.length; i++)
	    listElement.childNodes[i].style.display = 'none';
		this.id = lIterator.instances.length;
	lIterator.instances.push(this);
	setInterval('lIterator.instances['+this.id+'].showNext()',delay);
    
    /* Dynamic Methods */
		this.currentLI = listElement.firstChild; 
		/* Dynamic Methods */
	this.showNext = function()
	  { this.currentLI.style.display = 'none';
	    /* Following line is broken for readability */
		this.currentLI =
		    this.currentLI.nextSibling ?
                this.currentLI.nextSibling :
				this.currentLI.parentNode.firstChild;
        
		this.currentLI.style.display = 'block';
	  }
  }
/* Static Properties */
lIterator.instances = new Array();
/* Static Methods */


<!--
function popup(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=425,height=400,scrollbars=no');
return false;
}
//-->

var newwindow;
function pop(url)
{
	newwindow=window.open(url,'taf','height=400,width=525');
	if (window.focus) {newwindow.focus()}
}

