function showInline(elementName){
	var thisElement=document.getElementById(elementName);
	if(thisElement){
		thisElement.style.display="inline";
	}
}

function hideInline(elementName){
	var thisElement=document.getElementById(elementName);
	if(thisElement){
		thisElement.style.display="none";
	}
}