<!--
function togglehide(elid)
{
	if (elid.type == 'text') {
		elid.type='hidden';
	} else {
		elid.type = 'text';
	}
}

function toggleitems(oid)
{   
	buttid = "tog_" + oid;
	divid = "ord_" + oid; 
	//alert (buttid + ' ' + divid);
	grc = document.getElementById(buttid).src;
	if (grc.indexOf("collapse") > 0) {
		document.getElementById(buttid).src = grc.replace(/collapse/,"expand");
		document.getElementById(divid).style.display = "none";
	} else {		
        document.getElementById(buttid).src = grc.replace(/expand/,"collapse");	
        document.getElementById(divid).style.display = "";	
	} 
	
}

function showrows(val) {
	//max for val is 10
	 
	for (var i=1; i<= 10; i++) {
		elid='xtix'+i; 
		elid2 = 'ttix'+i
		if (i <= val) {
			st="";
		} else {
			st="none";
		}
		//alert ("i=" + i + " st = " + st);
		document.getElementById(elid).style.display = st; 
		document.getElementById(elid2).style.display = st;
	} 
}
//-->