Via link:
Via page load:Code:<html> <head> <script type="text/javascript"> function load_into_content(url) { window.open(url,'content'); } </script> </head> <body> <a href="javascript:load_into_content('http://google.co.uk');">link</a> </body> </html>
Code:<html> <head> <script type="text/javascript"> function open_content(){ window.open('http://google.co.uk','content'); } </script> </head> <body onload="javascript:open_content();"> </body> </head>


Reply With Quote



