my question is difficuilt, if you understand reply me, i want optimize a domain that when visitor log infor one domain and oher open it self like pop up window. can i do it? if yes how?
First of all I would skip the annoying popups... Anyway, I'm not sure if I understand you, but maybe this helps: <html> <head> <script type="text/javascript"> function openWindows() { window.open("http://www.webpelican.com/") /*Format this second window as u like, or maybe use window.createPopup on the first window instead...*/ window.openwindow.open("http://www.webpelican.com/internet-programming-3/dom-methods/","_blank","toolbar=yes, location=yes, directories=no, status=no, menubar=yes, scrollbars=yes, resizable=no, copyhistory=yes, width=400, height=400") } </script> </head> <body> <form> <input type=button value="Open Windows" onclick="openWindows()"> </form> </body> </html> Code (markup):