function openwindowablage(dateiname,breite,hoehe) {
	zwab = window.open(dateiname,'zwischenablage','dependent=yes,toolbar=no,scrollbars=yes,status=no,menubar=no,location=no,resizable=yes,width='+breite+',height='+hoehe+',left=0,top=0');
	zwab.focus();
}

function disableInlineEdit(cookieName) {
	// Ablaufdatum des Cookies einfach in die Vergangenheit
	temp = '';
	document.cookie = cookieName + "=" + temp + "; expires=Thu, 01-Jan-70 00:00:01 GMT;";
	
	document.location.reload();
}

/* PopUp fuer Modul Link */

function openLinkWindow(link, breite, hoehe, left, top, scrollbars, resizable, status) {
	var linkPopUp = window.open(link, 'LinkPopUp', 'toolbar=no,scrollbars='+scrollbars+',status='+status+',menubar=no,location=no,resizable='+resizable+',width='+breite+',height='+hoehe+',left='+left+',top='+top);
	
	if (linkPopUp.opener == null)
		linkPopUp.opener = self;
	linkPopUp.focus();
}
