// JavaScript Document
	 function showTab(tabId, tabNo)
	 {
		var tabCollection = document.getElementById(tabId);
		tabCollection.className='tab'+tabNo+'Visible';
	 }

