function hideSplashshowTable(ms1,ms2) {
	setTimeout("hide('startSplash','none')",ms1)	
	setTimeout("hide('contentTblHome','')",ms2)	
}

function hide(el,myDisplayVal) {
	document.getElementById(el).style.display=myDisplayVal;
}

