';
if(get_option('ad_left_enable') && get_option('ad_right_enable')) {$cellspan=' colspan="3"';} else if(get_option('ad_left_enable') || get_option('ad_right_enable')) {$cellspan=' colspan="2"';} else {$cellspan='';}
if(get_option('ad_top_enable')) {
$output .= '| '.get_option('ad_top').' |
';
}
if(get_option('ad_left_enable')) {
$output .= '| '.get_option('ad_left').' | ';
}
$output .= ''.$content.' | ';
if(get_option('ad_right_enable')) {
$output .= ''.get_option('ad_right').' | ';
}
if(get_option('ad_bottom_enable')) {
$output .= '
| '.get_option('ad_bottom').' | ';
}
$output .= '
';
return $output;
}
}
?>