I was hoping someone could take a look at this code. It does what I want in IE but, Netscape is not reading it.
<html>
<head>
<title>Resolution</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<SCRIPT LANGUAGE="JavaScript">
<!--
var url800x600= "http://cecpeople.bu.edu/ksulliva/fratellos/index2.htm";
var url1024x768= "http://cecpeople.bu.edu/ksulliva/fratellos/index1.htm";
if ((screen.width == 800) && (screen.height == 600))
{
window.location.href= url800x600;
}
else
{
window.location.href = url1024x768;
}
//-->
</SCRIPT>
</head>
<body bgcolor="#000000">
</body>
</html>
