I need some guidance as to what the problem is, so I can attemp to fix it. I'm guessing its the javascript.
Heres a shortened version of the source code:
Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html><script src="http://100webads.com/banners/tooltip.js"></script>
(Their banner table is here)
<script language="JavaScript">
<!--
// Width = 779;
// Get browser ...
function checkBrowser(){
this.ver=navigator.appVersion
this.dom=document.getElementById?1:0
this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom)?1:0;
this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom)?1:0;
this.ie4=(document.all && !this.dom)?1:0;
this.ns5=(this.dom && parseInt(this.ver) >= 5) ?1:0;
this.ns4=(document.layers && !this.dom)?1:0;
this.bw=(this.ie5 || this.ie4 || this.ns4 || this.ns5)
return this
}
var bw = new checkBrowser();
// Get page size ...
var PageWidth = (bw.ns4 || bw.ns5) ? innerWidth : document.body.offsetWidth - 20;
var PageHeight = (bw.ns4 || bw.ns5) ? innerHeight : document.body.offsetHeight - 20;
// Get our layer ...
var my_div = document.getElementById('divtxl');
// Fix stuff ...
if (parent && (PageWidth < 300 || PageHeight < 200)) {
my_div.style.display = "none";
}
else {
my_div.style.left = (PageWidth - 781) / 2;
document.write('<div align="center"><table width="100%" border="0" cellpadding="0" cellspacing="0"><tr><td height="22" style="font: Tahoma; font-size: 11px; color: #D4D4D4;"> </td></tr></table></table></div>\n');
}
-->
</script>
<head>
<title>Day - Wheres The Auction Calendar</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta content="en-us" http-equiv=language>
<meta content="Where's The Auction" http-equiv=author>
<meta content="Where's The Auction" http-equiv=publisher>
<link href="stylesheet.php" rel="stylesheet" type="text/css">
<script language="JavaScript" type="text/javascript"><!--
function isIE4()
{ return( navigator.appName.indexOf("Microsoft") != -1 && (navigator.appVersion.charAt(0)=='4') ); }
function new_window(freshurl) {
SmallWin = window.open(freshurl, 'Calendar','scrollbars=yes,resizable=yes,toolbar=no,height=300,width=400');
if (!isIE4()) {
if (window.focus) { SmallWin.focus(); }
}
if (SmallWin.opener == null) SmallWin.opener = window;
SmallWin.opener.name = "Main";
}
//-->
</script>
</head>http://www.wherestheauction.com/index.php?calendar=oh
Thanks