<!--
var Nav4 = ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) == 4)) 

function toggle(id){
    ul = "ul_" + id;
    //img = "img_" + id;
    
	for( i = 1; i <= 100; i++) {
		if (document.getElementById("ul_item"+i) != null) {
			ulElement = document.getElementById("ul_item"+i);
			ulElement.className = "closed";
		} else {
			break;
		}
			
	}
	ulElement = document.getElementById(ul);
    //imgElement = document.getElementById(img);
    if (ulElement){
		if (ulElement.className == 'closed'){
        	ulElement.className = "open";
            //imgElement.src = "opened.gif";
        }else{
            ulElement.className = "closed";
            //imgElement.src = "closed.gif";
        }
    }
}

var newwindow;
function winpop(url, width, height)
{
var nameW, topW, leftW, attrW
nameW = (new Date()).getSeconds().toString() ;

if (Nav4) { 
	// Center on the main window. 
	leftW = window.screenX + ((window.outerWidth - width) / 2) 
	topW = window.screenY + ((window.outerHeight - height) / 2) 
	attrW = ",screenX=" + leftW + ",screenY=" + topW + "" } 
else { 

	leftW = (screen.width - width) / 2 
	topW = (screen.height - height) / 2 
	attrW = ",left=" + leftW + ",top=" + topW + ""
}


	newwindow=window.open(url,nameW,'height='+height+',width='+width+attrW+',resizable=yes,scrollbars=yes,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}


//-->