function test() {
	alert("byeee");
}

function expand(parentID) {
/*	//ie4 = ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4 ));
	browser = navigator.appName;	
	if (browser == "Netscape") {
		document.all(parentID+"_0").style.visibility = "show";	
	//} else if ( ie4 ) {
	} else if ((browser == "Microsoft Internet Explorer") || (browser="Mozilla")) {
		counter = 0;
		if ( document.all( parentID+"_"+counter ) ) {
			if ( document.all( parentID+"_"+counter ).style.display == "none" ) {
				val = "";
			} else {	
				val = "none";
			}
			while (document.all( (parentID+"_"+counter) )) {
				document.all(parentID+"_"+counter).style.display = val;
				counter++;
			}
		}
	}*/
	counter = 0;
	what = document.getElementById(parentID+"_"+counter);
	var towhat;	
	if (typeof(what) != undefined && what != null && what.style.display != ""){
		towhat = "";
	}else 
		towhat = "none";
	while ( typeof(what) != undefined && what != null){
		whatstyle = what.style;
		whatstyle.display = towhat;
		counter++;
		what = document.getElementById(parentID+"_"+counter);
	}
}

function test(parentID) {
	alert("sdf");
       	browser = navigator.appName;
	if (browser = "Netscape") {		
		//99_0.visibility = "show";
	} else if ((browser == "Microsoft Internet Explorer") || (browser == "Mozilla")) {
		alert("other");
		//99_0.visibility = "visible";
	}
}

