Ok, that's what the code looked like it was suppose to do, but something went wrong. I've reset it back the normal way.
The (newindex.php) file has:
<?php $CSS=1; require("calendar/calendar.php"); ?>
between <head> and </head> lines.
in the <body> I have:
<?php
$MULTI=1;
$epcMultiWidth = "180px";
$epcMultiPad = 2;
$epcMultiNav = "170px";
$epcMultiCol = 1;
$epcMultiRow = 1;
require("calendar/calendar.php");
?>
calender.php has:
$serverPath="/home/efcweb1/public_html/calendar/";
and
$urlPath="/calendar/";
The problem page is:
www.emmanuelburbank.org/newindex.php
The source code shows:
<link href="/calendar/theme/emmtheme/esstyle.css" rel="stylesheet" type="text/css"/>
and
win = window.open("/calendar/functions/popup.php?ev=" + ev + "&readFile=0&readSQL=1&showCat=&oc=1","Calendar"," scrollbars=yes,status=no,location=no,toolbar=no,me nubar=no,directories=no,resizable=yes,width=" + w + ",height=" + h + ",top=" + wint + ",left=" + winl + "");
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
Wrong paths... both should read... "calendar/". I think the first "/" needs to be eliminated.
See what you think. Thanks, Bo