﻿function Toggle(obj) {
	if (obj.style.display=='none' || obj.style.display=='') {
		obj.style.display='block';
	}
	else {
		obj.style.display='none';
	}
}
