Подскажите пожалуйста как сделать ссылку с одного дива ( меню ) на другой ( контент). <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <!-- saved from url=(0044)http://bitby.net/wp-demo/size-fon/index.html --> <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="ru-RU-lite"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>фон</title> <!--<link rel="stylesheet" href="style.css" />--> <style type="text/css"> *{margin:0;padding:0;} html, body{ width:100%; height:100%; min-width:1000px; } #page{ position:absolute; top:0;bottom:0;right:0;left:0; z-index:100; } .note{ border:1px solid #ddd; margin:2% 7% 0 0px; width:55%; float:right; min-height:500px; height:auto !important; height:500px; position:relative; } .trans{ background:#fff; opacity:0.4; position:absolute; height:100%; width:100%; } .text{ position:relative; padding:10px; } .sid{ border:1px solid #ddd; margin:2% auto 0 7%; width:23%; float:left; position:relative; min-height:500px; height:auto !important; height:500px; } ul#menu{ position:absolute; bottom:5%; left:10%; font-size:px; } #menu li{ float:left; list-style:none; width:200px; text-align:center; border-right:1px solid #333; } #menu li a{ text-decoration:none; color:#fff; border-bottom:1px dashed transparent; } #menu li a:hover{ text-decoration:none; color:#fff; border-bottom:1px dashed #ddd; } #fon{ height:100%; width:100%; z-index:1; min-width:1000px; } #fon img{ height:100%; width:100%; position:absolute; } </style> </head> <body> <div id="page"> <div class="sid"> <div class="trans"><a href="index2.html">Главная</a></div>(нужно чтобы информация отображалась во втором блоке "страница") </div> <div class="note"> <div class="trans"> <p> </p> </div> <div class="text"> Страница (page) </div> </div> <ul id="menu"> <li><a href="#top">Главная</a></li> <li style="border:0 !important;"><a href="#index1.html">О компании</a></li> (надо чтобы информация отображалась в блоке "страница") </ul> </div> <div id="fon"> <img src="fon.jpg" alt=""> </div> </body></html> При нажатии на ссылку грузится страница в новом окне, а мне нужно в блоке div, подскажите в чем моя ошибка. Спасибо.