Im fairly new to PHP, however, it looks like your brackets are in the wrong place for your If/Else statements.
I Tried to separate your code a bit. You have some odd <?php and ?> placements. Your if statements wont really work because the brackets are stopping right before the php end statement.
And, you have comment tags covering your google_ad statements, so how will it even display it if its commented out?
Like I said, Im fairly new at this, but to me it looks like an issue there.. Hope it helps
<?php
if ( {T_HEAD_STYLESHEET} == sisters.css ) {
?>
<div align="center"><script type="text/javascript">
<!--
google_ad_client = "pub-0481246088971205";
google_ad_width = 728;
google_ad_height = 15;
google_ad_format = "728x15_0ads_al_s";
google_ad_channel ="6489528927";
google_color_border = "CC0000";
google_color_bg = "9999FF";
google_color_link = "333399";
google_color_url = "CCCCFF";
google_color_text = "000000";
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<?php }
elseif ( {T_HEAD_STYLESHEET} == darkfae.css ) {
?>
<div align="center"><script type="text/javascript"><!--
google_ad_client = "pub-0481246088971205";
google_ad_width = 728;
google_ad_height = 15;
google_ad_format = "728x15_0ads_al_s";
google_ad_channel ="6489528927";
google_color_border = "4273AD";
google_color_bg = "6699CC";
google_color_link = "064E98";
google_color_url = "CCCCCC";
google_color_text = "000000";
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<?php }
elseif ( {T_HEAD_STYLESHEET} == black.css ) {
?>
<div align="center"><script type="text/javascript">
<!--
google_ad_client = "pub-0481246088971205";
google_ad_width = 728;
google_ad_height = 15;
google_ad_format = "728x15_0ads_al_s";
google_ad_channel ="6489528927";
google_color_border = "333333";
google_color_bg = "000000";
google_color_link = "FFFFFF";
google_color_url = "999999";
google_color_text = "CCCCCC";
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</div>
<?php }
?>