function setStyleDisplay(myID, myDisplay) {
	d=document.getElementById(myID);
	d.style.display = myDisplay;
	return true;
}
