/*
 * ##################################################
 * #                                                #
 * # Gemeinde des Glaubens Kassel e.V.              #
 * # The official GdG-Website                       #
 * #                                                #
 * # Copyright (C) by René Knipschild               #
 * #                                                #
 * #                          rk@reneknipschild.net #
 * #                         www.reneknipschild.net #
 * #                                                #
 * ##################################################
 *
 * File: site.js
 * Version: 1.1.0
 * Last modified: 2011/03/02 15:18 CET
 * Author: rkCSD (go.reneknipschild.net/com)
 *
 * ===Notes==========================================
 * There are currently no notes.
 * ==================================================
 */

function paste_image(page, lang)
{
	width = 575;
	height = 375;
	x = (screen.width / 2) - (width / 2);
	y = (screen.height / 2) - (height / 2);
	window.open("/rkCSD-ImageManager?performOperation=INDEX&contentFlag=" + page + "&contentLang=" + lang, "RkcsdImagemanager", "left=" + x + ", top=" + y + ", width=" + width + ", height=" + height + ", menubar=no, toolbar=no, scrollbars=yes, status=no");
}
function insert_html(code, lang)
{
	tinyMCE.execCommand("mceInsertContent", false, code);
	//tinyMCE.execInstanceCommand("content_" + lang, "mceInsertContent", false, code, true);
}
function open_window(url, w, h)
{
	x = (screen.width / 2) - (w / 2);
	y = (screen.height / 2) - (h / 2);
	window.open(url, "RkcsdPopupwindow", "left=" + x + ", top=" + y + ", width=" + w + ", height=" + h + ", menubar=no, toolbar=no, scrollbars=yes, status=no");	
}
