/** Öffnet einen Link in einem neuen Fenster */
var xWindowInstance = null; // <xWindow>
function common_openLink(element) {				
	if (xWindowInstance != null && !xWindowInstance.closed) {
		xWindowInstance.load(element.href);
		xWindowInstance.focus();
	} else {
		xWindowInstance = 
			new xWindow(
				element.target,
				screen.width - 200, 800,
				200, screen.height-200,
				1, 1, 1, 1, 1, 1
			);
		xWindowInstance.focus();
	} 
				
	return false;
}	