<!--
var section= null;
var subsection = null;

function initMenuWithDir(dir) {
	var tempCol = document.getElementsByTagName("div") ;
		for (var i=0; i<tempCol.length; i++) {
			if ((tempCol[i].className == "child") )
				tempCol[i].style.display = "none";
		}
   
	if (section && subsection) {
		//alert(sectionImage);
	    expandDOM(section,sectionImage,dir);
		hilite(subsection);
		
	} else if (section) {
		
	 	hilite(section);
	}
	
}
function initMenu(){
	
		initMenuWithDir("");
	
} 

function expandDOM(el, image, dir) {

	var whichEl =  document.getElementById(el);
	
	if (!whichEl) {
		alert("cant find " + el);
		return;
	}
    
	if (whichEl.style.display == "none") {
		
		whichEl.style.display = "block";
		if (image) {
			if (dir == null || dir.length == 0)
			  document.images[image].src = "images/square_open.gif";
			else 
			 document.images[image].src = dir +"images/square_open.gif";
		}
	} else {
		whichEl.style.display = "none";
		
		if (image ) {
			if (dir == null || dir.length == 0)
			    document.images[image].src = "images/square_closed.gif";
			else
			document.images[image].src = dir +"images/square_closed.gif";
		}
   }
}

var text= null;
var l= null;
function hilite (el) {	
	
	text = document.getElementById(el);
	
	if (text) {
		text.style.color = '#2879c2';
		//text.removeAttribute("href");
				  
	}
}
var javascript_version = 1.2;
var newwin=null;
function launchwin(winurl,winname,winfeatures) {
	newwin = window.open(winurl, winname,winfeatures);
	if (javascript_version > 1.0) {
		// delay for IE4
		setTimeout('newwin.focus();',250);
	}
}
-->

