function showThumb(id) {

	if (document.getElementById) {
	
		document.getElementById(id).style.display = "none";
	}
	
	return false;

}

function hideThumb(id) {

	if (document.getElementById) {
	
		document.getElementById(id).style.display = "block";
	}
	
	return false;

}