/*
 * Copyright (c) 2010 Ewert Technologies
 *
 * All rights, including copyrights and patent rights are reserved.
 * This software is the confidential and proprietary information of Ewert
 * Technologies ("Confidential Information"). No copies of any portion are to
 * be made by whatever means without the express written permission of
 * Ewert Technologies.
 *
 * File Information:
 * $$HeadURL: svn://EWE04/web/projects/ewert_technologies/trunk/assets/js/openWindow.js $$
 * $$Revision: 295 $$
 * $$Date: 2010-06-24 13:03:43 -0700 (Thu, 24 Jun 2010) $$
 * $$Author: vewert $$
 */

/*
 * Opens the Release Notes in a New Window
 */
function openReleaseNotesWindow() {
	popupWin = window.open('./release_notes.html', 'Release Notes', 'scrollbars=yes, resizable=yes, width=1000, height=750');
}

/*
 * Opens the Windows PAD file summary in a New Window
 */
function openPadWinWindow() {
	popupWin = window.open('../../assets/pad/pwminder_win_pad.htm', 'PAD contents', 'scrollbars=yes, resizable=yes, width=1000, height=750');
}

/*
 * Opens the Mac PAD file summary in a New Window
 */
function openPadMacWindow() {
	popupWin = window.open('../../assets/pad/pwminder_mac_pad.htm', 'PAD contents', 'scrollbars=yes, resizable=yes, width=1000, height=750');
}

/*
 * Opens the Linux PAD file summary in a New Window
 */
function openPadLinWindow() {
	popupWin = window.open('../../assets/pad/pwminder_lin_pad.htm', 'PAD contents', 'scrollbars=yes, resizable=yes, width=1000, height=750');
}