You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
396 B
14 lines
396 B
<?php // contents of the ad banner frame
|
|
header("Content-type: text/html");
|
|
$basetarget="_blank";
|
|
include("html/head.std");
|
|
$banner = "graphics/banner.gif";
|
|
$banner_size = getimagesize($banner);
|
|
|
|
print("<a href=\"sponsors.php3\">\n");
|
|
print("<img src=\"$banner\" $banner_size[3] ");
|
|
print("alt=\"-Click here to visit our Sponsors!-\" ");
|
|
print("border=0>\n</a>\n");
|
|
|
|
include("html/tail.std");
|
|
?>
|