function ShowHide(idDiv) {
	var d = document.getElementById(idDiv).style;
	d.display = d.display ==""? "none" : "";
}
