/*
	showhide(id)
	Function to display flash loading icon when form submitted
*/
function showhide(id){
	if (document.getElementById){
		obj = document.getElementById(id);
		
		if (obj.style.display == "none"){
			obj.style.display = "";
		} else {
			obj.style.display = "none";
		}
	}
}