function populateSteelBox(strContent){
	var objSteelBoxContent = document.getElementById('steelbox-content');
	objSteelBoxContent.innerHTML = strContent;
}
function toggleElement(strElement,strValue){
	var objElement = document.getElementById(strElement);
	objElement.style.display=strValue;
}