/* * Name: * play_window.js * * Description: * Defines functions for the Play Window * * Pre-conditions: * None * * Post-conditions: * Defines the following functions: * * Log: * Shaunak Kashyap 11/21/2005 * - Creation * */ /* * Name: * openPlayer * * Description: * Opens the play window * * Pre-conditions: * audioType REQUIRED Type of audio * audioId REQUIRED Id of audio * * Post-conditions: * The player is opened * * Log: * Shaunak Kashyap 11/21/2005 * - Creation * */ function openPlayer(audioType, audioId) { var playWindowUrl = "/play_window.php"; playWindowUrl += "?audioType=" + audioType; playWindowUrl += "&audioId=" + audioId; window.open(playWindowUrl, "playWindow", "width=350,height=215,resizable=no,scrollbars=no,toolbar=no,location=no,directories=no,status=no,menubar=no"); } // END function - openPlayer