	
function showHideElement(elementID, type){
	var obj = document.getElementById(elementID);
	obj.style.display = type;
}