function CheckForm() {
	if (document.getElementById("txtGesamtkosten").value == "") {
		alert("Bitte Gesamtkosten eingeben!");
		document.getElementById("txtGesamtkosten").focus();
		return false;
	}
	if (document.getElementById("txtDarlehen").value == "") {
		alert("Bitte Darlehen eingeben!");
		document.getElementById("txtDarlehen").focus();
		return false;
	}
	return true;
}

function openWindow(URL,winName,features) {
  window.open(URL,winName,features);
}
function openWindow2(URL, winName) {
  window.open(URL, winName, "width=675, height=800, scrollbars=yes");
}