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