<html>
<head>
<!-- In diese Seite werden die Inhalte der Startseite und Sub Seiten nachgeladen -->
<script type="text/javascript" language="javascript">
<!--
function IFrameStart() {
var URL = location.search;
var URL = URL.substring(1,URL.length);
if(URL)
document.inlineframe.location.href = URL;
else
document.inlineframe.location.href = './startseite.html';
}
if (self.location.href != top.location.href) {
parent.location.href=self.location.href;
}
//-->
</script>
<link rel="stylesheet" type="text/css" href="iFrame.css" >
</head>
<body onLoad="IFrameStart()">
<br>
<br>
<a href="sub seite 2.html" target="inlineframe">Andere Seite laden</a>
<br>
<br>
<iframe id="inlineframe" name="inlineframe" border="0" frameborder="1" framespacing="0"></iframe>
</body>
</html> |