Your original download has a different big icons section.
Jim
// FUNCTION - convert big icons
function create_bi($a,$b,$c,$d,$e,$g,$h,$i) {
global $alert_types; // make colors global
$ix = $h-1;
$aname = isset($alert_types[$ix]['N'])?$alert_types[$ix]['N']:'unknown';
$bi = "A-none.png";
if(strpos($aname,'Warning') !== false) { $bi = "A-warn.png"; }
if(strpos($aname,'Advisory') !== false) { $bi = "A-advisory.png"; }
if(strpos($aname,'Watch') !== false) { $bi = "A-watch.png"; }
if(strpos($aname,'Statement') !== false) { $bi = "A-statement.png"; }
if(strpos($aname,'Air ') !== false) { $bi = "A-air.png"; }
if(strpos($aname,'Alert') !== false) { $bi = "A-alert.png"; }
if($h == 150) { $bi = "A-none.png"; }
if($i < 2) {$i = '';}
if($i >= 2) {$i = $i - 1;}
($i == 1) ? $alrts = 'alert' : $alrts = 'alerts';
if($i >= 1) {$i = ' +'.$i.' additional '.$alrts;}
$bico = ' <a href="'.$b.'?a='.$c.'#WA'.$d.'" title=" Details for '.$a
.' '.$e.$i.'" style="width:99%; text-decoration:none; padding-top:3px">'.$a.'<br><img src="'.$g
.'/'.$bi.'" alt=" Details for '.$a.' '.$e.$i
.'" width="74" height="18" style="border:none; padding-bottom:3px"><br></a>
';
return $bico;
}
// end convert big icons function