<!--//
function selectTab(tabid) {
	txttabid = 'tab_' + tabid;
	txtsel = 'sel' + txttabid;
	box = document.getElementById(txttabid);
	sel = document.getElementById(txtsel);
	boxes = getElementsByClass('dyntab',null,'div');
	for (i=0;i<boxes.length;i++) {
		boxe = boxes[i];
		if (boxe.id.indexOf('tab_') != -1 && boxe.id != txttabid) {
			boxe.style.display = 'none';
			boxe.style.visibility = 'hidden';
			document.getElementById('sel' + boxe.id).className = "";
		}
	}
	box.style.display = 'block';
	box.style.visibility = 'visible';
	sel.className = "seltab";
}
//-->
