
/**
 * Cheep / CHarden ExtEndable Publisher
 * 
 * @copyright Copyright (C) 2008 Charden Reklam <http://charden.se>
 * @author Erik Edlund <erik(at)Charden.se>
 */

/**
 * Admin helper; Log out from the administrative interface.
 */
function logout(baseUrl)
{
	window.top.open(baseUrl + '/admin/logout', '_self');
	window.close();
}

/**
 * Popup helper; opens the given url in a new window with determined dimensions.
 */
function openPopupUrl(url)
{
	var popup = window.open(url, '_blank', 'width = 700, height = 500', '');
	if (!popup.opener)
		popup.opener = window;
}

/**
 * Popup helper; opens the given url in the opener and closes the popup.
 */
function openUrlFromPopup(url)
{
	window.opener.top.site.open(url, '_self');
	window.close();
}

