ok, on the results page, create the following link:
<a href="email_Results.php?show=all">Show All</a>
then add this code at line 1:
<?php
if(!session_id()) session_start();
if(isset($_GET['show']) && $_GET['show'] == "all") {
unset($_SESSION["WADbSearch2_email_Results"]);
}
?>