﻿function hideall(integer){
	for (count=1; count<=integer; count+=1) 
	document.getElementById('tab'+count).style.display='none';
}
					
function hideall_right(integer,div){
	for (count=1; count<integer; count+=1) 
	document.getElementById(div+count).style.display='none';
}


