I saw a few things:
1.
No doctype (won't stop it from working, but still) nevermind, I missed it
2. No body tag
3. outerHeight needs to be capitalized properly (you had a lowercase H)
4. outerWidth needs to be capitalized properly (you had a lowercase W)
5. This won't work in IE6 or 7, they use document.body.clientHeight and document.body.clientWidth.
I didn't include the IE detection, but this should work better for you:
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<title>Micromedia Home</title>
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<script type="text/javascript">
<!--
var x = window.outerWidth;
var x1 = x-100;
var x2 = "\'100, ";
var x3 = x2+x1+"\'";
var y = window.outerHeight;
var y1 = y-200;
var y2 = "\'200, ";
var y3 = y2+y1+"\'";
document.write("<frameset rows="+y3+"><frame scrolling='no' frameborder='0' title='Micromedia Logo' name='Micromedia Logo' noresize='noresize' src='header.htm' \/> <frameset cols="+x3+"> <frame src='menu.htm' frameborder='0'title='Menu Bar' name='Menu Bar' noresize='noresize' scrolling='auto' \/> <frame frameborder='0' name='win-main' title='win-main' src='main.htm' noresize='noresize' scrolling='auto' \/><\/frameset><\/frameset>");
//-->
</script>
</body>
</html>
This post has been edited by kincaidkmf: 7 May, 2008 - 10:55 AM