function altImage(id,src){
	document.getElementById(id).src=src;
	return true;
}

function altDisplay(id,io){
	if (io==1){
		document.getElementById(id).style.display = "block";
	}else{
		document.getElementById(id).style.display  = "none";
	}	
	return true;
}
