[ Jeg tænkte at man måske kunne lave noget, så øverste frame, blev adresselinie? ]- Ja, det kan man godt...
... her er lige et eksempel på det (grovskitse):
index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><meta name="robots" content="noindex, nofollow"><title>Ingen titel</title></head>
<body>
<a href="java script: window.open('index2.html','navbar','width='+screen.availWidth+',height='+screen.availHeight+',top=0,left=0,resizable=1');">Åben</a>
</body></html>
index2.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "
http://www.w3.org/TR/html4/frameset.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><meta name="robots" content="noindex, nofollow"><title>Ingen titel</title></head>
<frameset cols="100,*">
<frame src="n.html" name="hnavnf">
<frameset rows="50,*">
<frame src="t.html" name="hnavtf">
<frame src="c.html" name="hnavcf">
</frameset>
</frameset>
</html>
og t.html:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd"><html><head><meta http-equiv="content-type" content="text/html; charset=iso-8859-1"><meta name="robots" content="noindex, nofollow"><title>Ingen titel</title>
<style type="text/css">
html,body{padding:0px;margin:0px}
</style>
<script type="text/javascript">
function fnavrelocate(f){
top.window.hnavcf.location.href=f.fnavurls.value;
}
</script></head>
<body>
<form name="hnavurl" onsubmit="fnavrelocate(this);return false;">
<input type="text" name="fnavurls"><input type="submit" value="Aktiver">
</form>
</body></html>
c.html og n.html er bare blanke filer...