The use of a unallowed linking method (mentioned blow) will result in a deduction in your score. We will do our best to contact you, but don't wait for us to tell you to fix something you know you are doing wrong. If you do not reply to the email we send explaining the problem, and do not fix it, then we will be forced to remove your account.

  • You MAY NOT load your account in a frame, open it in a new window only.

  • You MAY NOT use a JavaScript popup window when entering your site or subpages.

  • You MAY use an exit popup as long as it is the only exit popup on that page and opens in a fullsize regular window.

  • JavaScript Confirm popups are allowed as long as they mention our name "Game Quest" or "Top 50" in them.

  • You may not use JavaScript or other means to require/force users to click on your GQ link and vote for you in order to gain entrance or access to your site or sections of it.



    Click on the following if you wish to see the code for adding JavaScript Exit or Confirm popups.
















    If you wish to add a exit popup to your site, add the following two things to your page.

    1. Add the code: onunload="gqxit()" to your body tag.

    Need an example? If your body tag currently looks like this:
    <body background=bg1.jpg bgcolor=#000000 text=#FFFFB0 link=#ffffff vlink=#ffffff>

    Then we change it to look like this:
    <body background=bg1.jpg bgcolor=#000000 text=#FFFFB0 link=#ffffff vlink=#ffffff onunload="gqxit()">

    2. Now cut and paste the following code onto your page:

    <script language="JavaScript">
    <!--// begin GQT50 confirm code
    var exit=true;
    function gqxit()
    {
    if (exit)
    open("http://www.bigbig.com/cgi-bin/gq/topvlog.cgi?YOUR_ACCCOUNT");
    }
    // -->
    </SCRIPT>


    Thats it. Now try closing or exiting your paqe and you will see the window popup. Make sure you replaced YOUR_ACCCOUNT with your account.










    If you wish to add a JavaConfirm popup to your site, copy and paste the following into your page. The best place is near the top, just after your body tag.

    ------ Begin Cutting Below ------

    <script language="JavaScript">
    function vote () {
    gqvote = "http://www.bigbig.com/cgi-bin/gq/topvlog.cgi?YOUR_ACCOUNT"
    window.open(gqvote, 'GQVote');
    }
    </script>
    <script language="JavaScript">
    function cancel () {
    }
    </script>
    <script language="JavaScript">
    if (confirm("Click OK to visit Gamequest for ROMs!")) {
    vote();
    }
    else cancel()
    </script>

    ------ End Cut ------