function closeEditBox(anfrage,url) {
    if (anfrage.readyState == 4) {
        if (anfrage.status == 200) {
            Contentbox.close();
            window.location.reload();
        }
    }
}

function simpleCloseEditBox() {
	Contentbox.close();
	window.location.reload();
}

function checkProfilForm(url,uid){
	if($('u_desc').value.length > 800){
		alert("Die Beschreibung ist zu lang. Die maximal erlaubte Länge beträgt 800 Zeichen, Ihr Text hat " + $('u_desc').value.length + " Zeichen. Bitte kürzen Sie Ihren Text entsprechend.");
		return false;
	}
	
	var firmenname = escape($('u_firma').value);

	
	startRequest(url,'updateProfilData','id=' + uid + '&titel=' + $('u_titel').value + '&anrede=' + $('u_anrede').value + '&firma=' + firmenname + '&vorname=' + $('u_vorname').value + '&nachname=' + $('u_nachname').value + '&strasse=' + $('u_strasse').value + '&plz=' + $('u_plz').value + '&ort=' + $('u_ort').value + '&email=' + $('u_email').value + '&telefon=' + $('u_telefon').value + '&fax=' + $('u_fax').value + '&suchworte=' + $('u_suchworte').value + '&branche1=' + $('branche1').value + '&branche2=' + $('branche2').value + '&branche3=' + $('branche3').value + '&branche4=' + $('branche4').value + '&branche5=' + $('branche5').value + '&branche6=' + $('branche6').value + '&desc=' + $('u_desc').value + '&webseite=' + $('u_website').value + '',closeEditBox);
}

