I will explain  how you can make a pop up box using java script.  Script Code <script> var newwindow; function poptastic(url) {      newwindow = window.open(url, ‘name’, “scrollbars=1,resizable=1″); if (window.focus) {newwindow.focus()} } </script>   Insert the above function to the head section of your page .You can pass the url you [...]