function confirmDelete() { 
	if (confirm('Are you sure you wan\'t to delete this stockist?')){
		return true;
	}else{
		return false;
	}
return 
}

function showID(theID){
	document.getElementById(theID).style.display = '';
}
function hideID(theID){
	document.getElementById(theID).style.display = 'none';
}