var mailregex = /^[0-9a-zA-Z][0-9a-zA-Z\._-]*@([0-9a-zA-Z-_]+\.)+([a-z]{2,6})$/;
var dateregex = /^[0-9]{1,2}\.[0-9]{1,2}\.[0-9]{4}$/;
var numregex = /^[0-9]+$/;

function popupNormal(sUrl, sWidth, sHeight)
{
	var popup;

	popup = window.open(sUrl, 'PressRelease','toolbar=yes,location=no,directories=no,status=no,menubar=no,scrollbars=yes,screenX=10,screenY=10,resizable=yes,width=' + sWidth + ',height=' + sHeight, true);
	if(navigator.appName.indexOf('Netscape') != -1)
		popup.focus();
}

function popupHelp(sUrl, sWidth, sHeight)
{
	var popup;

	popup = window.open(sUrl, 'PressRelease','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=auto,screenX=10,screenY=10,resizable=yes,width=' + sWidth + ',height=' + sHeight, true);
	if(navigator.appName.indexOf('Netscape') != -1)
		popup.focus();
}

function popupPicture(sUrl, sWidth, sHeight)
{
	var popup;
	//var sWidth=sWidth+10;
	//var sHeight=sHeight+10;
	
	popup = window.open(sUrl, 'PictureViewer','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,screenX=10,screenY=10,resizable=yes,width=' + sWidth + ',height=' + sHeight, true);
	if(navigator.appName.indexOf('Netscape') != -1)
		popup.focus();
}

function cms_login() {
	window.open("/cms/login.php", "login", "width=450,height=300,resizable=yes");
}

function konsole(konsurl,konswidth,konsheight) {
	kons = window.open(konsurl, "zoom", "width="+konswidth+",height="+konsheight+"location=no,menubar=no,scrollbars=no,status=no,toolbar=no,resizable=no'");
	if(kons.focus)kons.focus();
}

function mifi(missifi) {
	if (missifi!="") {
		alert("Bitte folgende Felder noch vollst�ndig ausf�llen:\n " + missifi);
		return false;
	}
	return true;
}

function check_mailthispage() {
	var missing_fields="";
	if (!mailregex.test(document.forms[0].email_recipient.value)) missing_fields+="\n- Emailadresse Empf�nger";
	if (!mailregex.test(document.forms[0].email_sender.value)) 	missing_fields+="\n- Emailadresse Absender";
	return mifi(missing_fields);
}

function check_eventvorschlag() {
	var missing_fields="";
	if (document.forms[0].event_title.value=="") 	missing_fields+="\n- Event Titel";
	if (document.forms[0].desc.value=="") 	missing_fields+="\n- Event Beschreibung";
	if (document.forms[0].event_type.options[document.forms[0].event_type.selectedIndex].value=="none") missing_fields+="\n- Event Typ";
	if (document.forms[0].organizer.value=="") 	missing_fields+="\n- Veranstalter Name/Firma";
	if (document.forms[0].address.value=="") 	missing_fields+="\n- Adresse";
	if (document.forms[0].phone.value=="") 	missing_fields+="\n- Telefon";
	return mifi(missing_fields);
}

function check_bnl() {
	var missing_fields="";
	if (document.forms[0].name.value=="") 	missing_fields+="\n- Name";
	if (document.forms[0].betrieb.value=="") 	missing_fields+="\n- Betrieb";
	if (document.forms[0].adresse.value=="") 	missing_fields+="\n- Adresse";
	if (!mailregex.test(document.forms[0].email.value)) 	missing_fields+="\n- eMail";
	return mifi(missing_fields);
}

function check_kundenanmeldung() {
	var missing_fields="";
	if (document.forms[0].name.value=="")		missing_fields+="\n- Name";
	if (document.forms[0].betrieb.value=="")	missing_fields+="\n- Betrieb";
	if (document.forms[0].adresse.value=="")	missing_fields+="\n- Adresse";
	if (!mailregex.test(document.forms[0].email.value)) 	missing_fields+="\n- eMail";
	if (document.forms[0].phone.value=="")		missing_fields+="\n- Telefon";
	if (document.forms[0].username.value=="")	missing_fields+="\n- gew. Benutzername";
	if (document.forms[0].password.value=="")	missing_fields+="\n- gew. Passwort";
	if (document.forms[0].password_conf.value=="")	missing_fields+="\n- Passwortbest�tigung";
	if (document.forms[0].password.value != document.forms[0].password_conf.value) missing_fields+="\n- Passwort und Passwortbest�tigung m�ssen identisch sein!";
	if (document.forms[0].password.value == document.forms[0].username.value) missing_fields+="\n- Benutzername und Passwort d�rfen aus Sicherheitsgr�nden nicht identisch sein!";
	return mifi(missing_fields);
}

function printpage() {
	if (window.print)
		window.print();
	else
		alert("Leider unterst�tzt Ihr Browser diese Funktion nicht. Bitte aktivieren Sie die Druckfunktion Ihres Browsers manuell.");
}

function hideNews(artikel_id) {
	var newsids = artikel_id.split(",");
	for(i = 0; i <= newsids.length; i++) {
		 if (newsids[i]) {
		 	document.getElementById("news_"+newsids[i]).style.display = "none";
		 }
	}
}

function toggleNews(artikel_id) {
	if (document.getElementById("news_"+artikel_id).style.display == "none") {
		document.getElementById("news_"+artikel_id).style.display = "block";
		document.getElementById("switchpfeil_"+artikel_id).src = "/cms/styles/default/img/pfeil_down.gif";
	} else if (document.getElementById("news_"+artikel_id).style.display == "block") {
		document.getElementById("news_"+artikel_id).style.display = "none";
		document.getElementById("switchpfeil_"+artikel_id).src = "/cms/styles/default/img/pfeil.gif";
	}
}