function showHide(divID){
	try{
		theDiv = document.getElementById(divID);
		if(theDiv.style.display=="none"){
			theDiv.style.display="block";	
		}
		else{
			theDiv.style.display="none";	
		}
	}
	catch(e){
		
	}
}


