/*
   Scripts for u-tx.net
   Java Script - 2009 Francesc Hervada-Sala
*/

// Details show / hide:
function show(name) {
	document.getElementById(name+'short').style.display="none";
	document.getElementById(name+'long').style.display="inline";
}
function hide(name) {
	document.getElementById(name+'short').style.display="inline";
	document.getElementById(name+'long').style.display="none";
}
