function openURL(URL, TARGET) {

	if (TARGET == "") {
		window.location.href = URL;
	} else {
		var FENSTER = window.open(URL, "new Window", "");
	}
}

function printPage(URL) {
	FENSTER = window
			.open(URL, "Druckansicht",
					"menubar=yes,status=no,resizable=yes,scrollbars=yes,width=735,height=600");
	return false;
}

function openImage(image, width, height) {
	params = 'width=' + screen.availWidth;
	params += ', height=' + screen.availHeight;
	params += ', top=0, left=0';
		
	var width;
	var height;

	width = screen.availWidth;
	height = screen.availHeight;
	newwin = window.open(image + "&w=" + width + "&h=" + height, 'Fenster1',
			params);
	if (window.focus) {
		newwin.focus()
	}
	return false;
}
/*
 * 
 * function openImage(image, width, height){ var popup; var height = height +
 * 55; //popup = window.open(image, "Fenster1",
 * "width="+width+",height="+height); var screen = parent.screen; popup =
 * window.open(image+ "&w=" + screen.width + "&h=" + window.innerHeight,
 * "Fenster1", "width="+screen.width+",height="+screen.height); }
 */