/****

	Muestra o oculta un span o div con ID.

	Solo para IE. Respeta el texto. Tablas completas.

*****/



function showHideData(id) {

	if (document.all[id].style.display == '') 

		document.all[id].style.display = 'none'

	else

	   document.all[id].style.display = '';

}



function showData(id) {

	document.all[id].style.display = '';

}



function hideData(id) {

	document.all[id].style.display = 'none';

}



function confirma(mensaje,destino) {

	if ( confirm(mensaje) ) { 

		self.location =destino;

	}

}



