/*
 *
 * Copyright (C)SERENA Software,Inc. 1998-2005. All Rights Reserved.
 * 
 * This computer software is Licensed Material belonging to Serena Software.
 * It is considered a trade secret and not to be used or divulged by parties
 * who have not received written authorization from Serena Software.
 */

/**
 * Commands related to the general UI functionality
 */
_CmdGeneral.prototype.constructor = _CmdGeneral;

function _CmdGeneral() {
    this.contextUrl = document.location.protocol + "//";
    this.contextUrl += document.location.hostname;
    if ( document.location.port != "") {
        this.contextUrl += ":" + document.location.port;
    }
    this.contextUrl += "/servlet";
}

/**
 * Logs out the top window
 */
_CmdGeneral.prototype.logoutWindow = function() {
    top.location.href = this.contextUrl + "/action/logout.action";
    return false;
}

/**
 * Shows the About dialog
 */
_CmdGeneral.prototype.showAbout = function() {
    var parameters = WindowUtil.PARAMETERS_MODALDIALOG;
    parameters["name"] = "About";
    parameters["width"] = 500;
    parameters["height"] = 700;
    WindowUtil.openContextWindow( "popup_about.jsp", parameters);
    return false;
}

var CmdGeneral = new _CmdGeneral();
