function modifyTable(showID) {
	var table = document.getElementById('listTable');
	var activePoint = document.getElementsByTagName('span');
	for (var pointID = 0; (point = activePoint[pointID]); pointID++) {
		if (point.className == 'sortListActive') point.className = 'sortList';
		if (point.id == showID) point.className = 'sortListActive';	
	}
	
	for (var trID = 1; (row = table.getElementsByTagName('tr')[trID]); trID++) {
		if (row.id.indexOf("-"+showID+"-")>-1) row.style.display = '';
		else row.style.display = 'none';		
	}
	
	
}

function openWindowTarget(url, width, height,target ) {
  w = window.open(url,target,"height="+height+",width="+width+",status=no,toolbar=no,menubar=no,location=no,resizable=yes,top=100,left=100,scrollbars=yes");
  w.focus();
}

function showInfo (info,placeID) {
	if(document.getElementById(placeID)) document.getElementById(placeID).innerHTML=info;	
}