// JavaScript Document
function setDisplay(pElement,pState){
	if(pElement.style){
		pElement.style.display = pState;
	}
}