i m having problem regarding updating the link in the address bar of browser...
when user clicks on the clicks here link ....its content is loading in the iframe
to the right hand side....

also iframes contains web page when the link (for e.g Page 1) is clicked the content is changing .... but it is not updating in the url..
that which link is clicked.... when index page is open separately it shows which link is clicked in the url.... but does not show in the iframe...

so is there any solution so that which ever link is clicked should update in the address bar....

note here is switch link... http://poker.ovh.org/switch/


Code:
<html>
	<head>
	<script type="text/javascript">
	function changePage()
	{
		document.getElementById("content").src = "http://poker.ovh.org/switch/";		
	}
	</script>	
	</head>
   	<body>
       		<div id=links style="float:left;">
			<a href=# onclick="changePage()"> Click Here</a></div>
			
        	<div id=info style="float:right;"><h1>Contents will be displayed here</h1>
			<IFRAME name="content" id="content" src="orange.jpg" border=0 width=1000% height=100% frameborder=0 scrolling=yes></IFRAME></div>
        </body>
</html>