Aperfectcircle:
Perhaps my call to the style sheet is in the wrong place for Netscape. I'll include the html code for my calling page. Doesn't make sense though that it worked for you and not for me - only think I can think of is that you are perhaps calling it from within your program than a different place than me.
Thanks
Terrapin
<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Kasaan Alaskan Malamutes</title>
<script language="JavaScript">
//function Precache(){
var i = 0
//this one takes the pic names, if the paths are different, put them
//here also otherwise add them as a string later
var picnameArr = new Array("home.gif","home4.gif","pedigree.gif","pedigree3.gif","back.gif","back3.gif","austin.jpg","pawbar.gif"
//this one takes all the heights of the images, it should be of equal
//size to the previous Array
var picheightArr = new Array(39,39,39,39,39,39,319,25)
//this one takes all the widths of the images, it should be of equal
//size to the previous Array
var picwidthArr = new Array(94,94,94,94,94,94,349,574)
//this one takes images as objects
var picobjectArr = new Array()
//loop through and build the object array
for(i = 0;i < picnameArr.length;i++){
picobjectArr
= new Image(picwidthArr,picheightArr)
picobjectArr.src = picnameArr
}
for(i = 0;i < document.images.length;i++){
document.images.src = picobjectArr
}
//}
//-->
</script>
<link rel="stylesheet" type="text/css" href="kasaanmenu.css">
</head>
<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" >
<tr>
<td WIDTH="100%">
<center>
<div align="center">
<center><table BORDER=0 WIDTH="100%" >
<tr>
<td VALIGN=TOP COLSPAN="3" WIDTH="100%">
<p align="center"><img border="0" src="austinhdg.gif" width="702" height="52"></p>
</td>
</tr>
<tr>
<td ALIGN=LEFT VALIGN=TOP WIDTH="69%">
<center>
<p><img SRC="Austin2.jpg" BORDER=2 height=319 width=349 align=CENTER><font color="#000066"></font>
<p><b>Austin</b></p>
<p> </center>
</td>
</tr>
<tr>
<td VALIGN=TOP COLSPAN="3" WIDTH="100%" align="center">
<p align="center">
<a href="index.htm" onmouseover="image1.src='home4.gif';" onmouseout="image1.src='home.gif';"><img SRC="home.gif" NAME="image1" ALT="Home" border="0" width="94" height="39"></a>
<a href="javascript:history.go(-1)" onmouseover="image3.src='back4.gif';" onmouseout="image3.src='back.gif';"><img SRC="back.gif" Name="image3" Alt="Back" border="0" width="94" height="39"></a>
<a href="Austinped.htm" onmouseover="image2.src='pedigree4.gif';" onmouseout="image2.src='pedigree.gif';"><img SRC="pedigree.gif" NAME="image2" ALT="Pedigree" border="0" width="94" height="39"></a>
</center>
</center>
<p align="left"> </td>
</tr>
</table>
</center>
</div>
</td>
</tr>
</table>
<!--#include virtual='bottombar.htm' -->
</html>