var HilfeKeyword;
var Link;
var SuchenKeyword;
var Link2;
function HilfeSystem () {
	if (window.getSelection) {
			HilfeKeyword = window.getSelection();
	} else if (document.getSelection) {
		HilfeKeyword = document.getSelection();
	} else if (document.selection) {
		HilfeKeyword = document.selection.createRange().text;
	}
	if (HilfeKeyword == "" || HilfeKeyword == " ") {
		alert('Bitte Text auswählen!');
	} else {
		Link = "/cms/Hilfe-0/keyword=" + HilfeKeyword;
		window.location = Link;
	}

}
function SuchSystem () {
	SuchenKeyword = document.Suche.SuchenKeyword.value
	Link2 = "/cms/Suche-0/keyword=" + SuchenKeyword;
	window.location = Link2;

}
function passwd2md5() {
	document.login.L_PW_2.value = MD5(document.login.L_PW.value);
	document.login.L_PW.value = "";
}
function zeigeVollesBild(name,width,height) {
	var popwin = window.open ("/Fotos/" + name + "/","eunm2_popup","width=" + width + ",height=" + height);
}
