ok
I am lost, it just doesn't work with what I am doing and the way I am programming....
$TEMPLATE["PAGES"]["PAGE"] = <<<EOF
<P><A HREF="[PAGE_URL]"><B>[PAGE_TITLE]</B></A><BR>
[PAGE_DESCRIPTION]<BR>
[PAGE_URL]<BR>
<table width=100 border=0>
<tr>
<td><div align=center><a href="[PAGE_COMMENT]" onMouseover="tip('View Comments')";
onMouseout="hidetip()"><IMG BORDER=0 SRC="images/icons/comment.png"></A></div></td>
<td><div align=center><a href="[PAGE_BRIEF]" onMouseover="tip('Click to view<BR> [PAGE_TITLE] <BR> Briefcase')";
onMouseout="hidetip()" onClick="return overlay(this, 'subcontent2', 'middlebottom')"><IMG BORDER=0 SRC="images/icons/briefcase.png"></A></div>
<DIV id="subcontent2" style="position:absolute; display:none; border: 9px solid black; background-color: lightyellow; width: 468px; height: 250px; padding: 8px">
[PAGE_TITLE] Briefcase<br>
<br>
<script type="text/javascript">
ajaxinclude("briefcase.php")
</script>
<div align="right"><a href="#" onClick="overlayclose('subcontent2'); return false">Close Box</a></div>
</DIV>
</td>
</tr>
</table>
EOF;
thats my template_index.php file above.....
that file is included inside another php file called dir.php
the code above alows you to click on the briefcase image and a div overlay comes up...inside this overlay it includes a file called briefcase.php
the code in that file is below...
<script type="text/javascript" src="ajaxtabs/ajaxtabs.js">
</script>
<ul id="maintab" class="shadetabs">
<li class="selected"><a href="#default" rel="ajaxcontentarea">Home</a></li>
<li><a href="l.htm" rel="ajaxcontentarea">AD 1</a></li>
<li><a href="2.htm" rel="ajaxcontentarea">AD 2</a></li>
<li><a href="3.htm" rel="ajaxcontentarea">AD 3</a></li>
<li><a href="4.htm" rel="ajaxcontentarea">AD 4</a></li>
</ul>
<div id="ajaxcontentarea" class="contentstyle">
<p>Welcome to so and so's SFB Briefcase. Feel free to browse through there ads and promotions</p>
</div>
<script type="text/javascript">
startajaxtabs("maintab")
</script>
so basically I did something wrong just don't know what... All I can assume is
this code
<script type="text/javascript" src="ajaxtabs/ajaxtabs.js">
</script>
is failing to load inside of firefox inside of everything else here.
but it does load inside IE, and if I create the div overlay on a seperate page like THIS ONE it does work in firefox.
this is the website I am working on and WHERE it doesn't work in FireFox but IE it works.
any clues?