Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12
  1. #11
    Join Date
    Jul 2004
    Location
    Bournemouth. UK
    Posts
    3,638
    Tokens
    0

    Latest Awards:

    Default

    just change the dimensisons then
    REMOVED

    Edited by jesus (Forum Super Moderator): Please do not have text in your signature which is over size 4.

  2. #12
    Join Date
    Aug 2004
    Location
    UK
    Posts
    11,283
    Tokens
    2,031

    Latest Awards:

    Default

    You mean like?

    HTML Code:
    <a href="#" onclick="Popup=window.open('POP UP URL ','Popup','toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no,width=500,height=500,left=430,top=23');return false;">   link </a>
    Athogh popup blockers will get them so its best to use the normal url caller and a fucntion for the window

    aka

    HTML Code:
    <script>
    function popup() { window.open(' POP UP URL ','popupname','width=250,height=500,resizable=yes,scrollbars=yes'); }
    </script>
    and call it by setting the link url popup() for the exsample

    eg

    HTML Code:
    <a href="javascript:popup();"> LINK </a>

Page 2 of 2 FirstFirst 12

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •