//Auto load frames JavaScript

// Enshur that the page is opened the frame page.
if (top == self) {
	document.writeln('<html>');
	document.writeln('<frameset framespacing="0" border="false" frameborder="0" cols="50%,750,50%">');
  	document.writeln('<frame name="/blank" scrolling="no" marginwidth="0" marginheight="0" src="blank.htm">');
  	document.writeln('<frameset rows="12%,*">');
    	document.writeln('<frame name="top" src="/top.htm" scrolling="no" noresize target="main" marginheight="0">');
    	document.writeln('<frameset cols="*,500,*">');
      	document.writeln('<frame name="menu" src="/menu.htm" scrolling="no" noresize target="main">');
      	document.writeln('<frame name="main" src="/main.htm" scrolling="auto" noresize target="main" marginwidth="0" marginheight="15">');
      	document.writeln('<frame name="main2" src="/hoejemenu.htm" scrolling="no" noresize target="main">');
    	document.writeln('</frameset>');
  	document.writeln('</frameset>');
  	document.writeln('<frame name="blank" scrolling="no" marginwidth="0" marginheight="0" src="blank.htm">');
  	document.writeln('<noframes>');
  	document.writeln('<body><p>This page uses frames, but your browser does not support them.</p></body>');
  	document.writeln('</noframes>');
	document.writeln('</frameset>');
	document.writeln('</html>');

	top.main.location=self.location;
}

