﻿// Event when the News button is pressed
function NewsPress() {
    window.location = './whatsnew/index.aspx';
}

// Event when the Forum button is pressed
function ForumPress() {
    window.location = '/forum.aspx';
}


// Event when the Help button is pressed
function HelpPress() {
    window.location = './help/index.aspx';
}


// Event when the Download button is pressed
function DownloadPress() {
    window.location = './downloads/index.aspx';
}


// Event when the Trailer button is pressed
function TrailerPress() {
    window.location = './Themes/trailer/trailer.html';
}


// Event when the Play button is pressed
function PlayPress() {

    // Open the game
    window.open('../GalaxseedsGame/galaxseedsClient.aspx', 'GalaXseeds', 'height=510, width=750');
    // Hack popup blocker
    //window.open('../GalaxseedsGame/galaxseedsClient.aspx', 'GalaXseeds', 'height=510, width=750');
    
    // Redirect the user to the light page so he won't lag
    window.location = './index_light.aspx';
}