Hey. I am wondering if someone would like to help me with a quick line of code... I want it to excute a url once anything is clicked on the index page, like once anything is clicked it has a Pop-up type window. It's a url that i want to pop-up...Thanks
I think you could do what you want with javascript by using: <script type='text/javascript'> <!-- function Start() { var show = window.open("http://www.somesite.domain", "Nameofwindow" , "width=550, height=500" ) } //--> </script> Code (markup): add that to the head and then put this in your body tag <body onclick("Start")> HTML: If you only wanted to have it open the window once, you would have to add an if statement, you didn't make that clear for me. Hope that helps Dox