function showSITabInfo(ClickedID)
{
	ClassValue = ClickedID.className;

	if (ClassValue =='msiOptionTab1On'||ClassValue =='msiOptionTab1Off'){

		//changes the class Activ if the tab clicked
		tabOption = document.getElementById('msiOption1');
		tabOption.className = 'msiOptionTab1On';

		//changes the class Inactive
		tabOption = document.getElementById('msiOption2');
		tabOption.className = 'msiOptionTab2Off';

		//show the conteiner information for each tab select
		myObje = document.getElementById('msiTab1');
		myObje.style.display = 'block';
		myObje = document.getElementById('msiTab2');
		myObje.style.display = 'none';

	}

	else if (ClassValue =='msiOptionTab2On'||ClassValue =='msiOptionTab2Off'){
		//changes the class Activ if the tab clicked
		tabOption = document.getElementById('msiOption1');
		tabOption.className = 'msiOptionTab1Off';

		//changes the class Inactive
		tabOption = document.getElementById('msiOption2');
		tabOption.className = 'msiOptionTab2On';

		//show the conteiner information for each tab select
		myObje = document.getElementById('msiTab1');
		myObje.style.display = 'none';
		myObje = document.getElementById('msiTab2');
		myObje.style.display = 'block';
	}

}

