function checkForm(formID){
	myForm = document.getElementById(formID);
	if (typeof(myForm) != "object") return false;
	myElements = myForm.elements;
	myError = new Array();
	for (f=0; f<myElements.length; f++){
		myElement = myElements[f];
		if (myElement.id.indexOf('_req') != -1){
			// REQUIRED FIELD
			if (myElement.value == "" || (myElement.type == "checkbox" && myElement.checked != true)) {
				myError.push(myElement);
			}
		}
	}
	if (myError.length > 0){
		alert("Bitte füllen Sie alle Pflichtfelder aus!");
		myError[0].focus();
		return false;
	} else { 
		return true;
	}
	return false;
}
function popup() {
	w = 708;
	h = 537;
	x = screen.availWidth/2-w/2;
	y = screen.availHeight/2-h/2;
	var popupWindow = window.open(
		basePath+'includes/invest-optimize.php?flash=true','Guestbook','width='+w+',height='+h+',left='+x+',top='+y+',screenX='+x+',screenY='+y);
}

function changeSubject(id, id2) {
	index = document.getElementById(id2).selectedIndex;
	if (email[index].length) {
		document.getElementById(id).action = basePath+'backend/send-mail.php?email='+email[index];
		return true;
	} 		
	document.getElementById(id).action = basePath+'backend/send-mail.php';
	return true;
}
