function confirmSubmit()
{
var agree=confirm("Sind Sie sicher?");
if (agree)
	return true ;
else
	return false ;
}

// ######### Freizeitplaner #############

function OpenFreizeitPlaner()
{
   PopUp = 0;
   PopUp = window.open("","fzperftkreis","width=789,height=566,directories=0,location=0,menubar=0,resizeable=0,scrollbars=0,status=0,toolbar=0");

 	if (PopUp)
   	{
	   	    PopUp.location.href = "http://erftkreis.tourtorial.de/index.php3";    
   	}
}

// ######### Bildungsnetz Karte #############


function toggleBox(szDivID, iState) // 1 visible, 0 hidden
{
   var obj = document.layers ? document.layers[szDivID] :
   document.getElementById ?  document.getElementById(szDivID).style :
   document.all[szDivID].style;
   obj.display = document.layers ? (iState ? "show" : "hide") :
   (iState ? "inline" : "none");
}

function addFormEvent(func) {
  if (!document.getElementById | !document.getElementsByTagName) return
  var oldonload=window.onload
  if (typeof window.onload != 'function') { window.onload=func }
  else {
    window.onload=function() { oldonload(); func() }
  }
}

function showDiv(id){
	if (!document.getElementsByTagName) return
	if (document.getElementById(id).style.display=='block'){
		document.getElementById(id).style.display='none'
	}
	else{
		document.getElementById(id).style.display='block'
	}
	//  focus is moved by the href of the link to the start of the help
}

function hideDiv(id) {
	if (!document.getElementsByTagName) return
	document.getElementById(id).style.display = 'none'
}

function init_help_kontaktform() {
	if (!document.getElementsByTagName) return
	hideDiv('hlp_mailMessage');
	hideDiv('hlp_mailName');
	hideDiv('hlp_mailEmail');
	hideDiv('hlp_mailPhone');
	hideDiv('hlp_cc');
}
function init_help_kontakt() {
	if (!document.getElementsByTagName) return
	hideDiv('hlp_mailMessage');
	hideDiv('hlp_mailName');
	hideDiv('hlp_mailEmail');
	hideDiv('hlp_mailPhone');
}
function init_help_profile() {
	if (!document.getElementsByTagName) return
	hideDiv('hlp_company');
	hideDiv('hlp_homepage');
	hideDiv('hlp_street');
	hideDiv('hlp_plz');
	hideDiv('hlp_city');
	hideDiv('hlp_phone');
	hideDiv('hlp_fax');
	hideDiv('hlp_mobile');
	hideDiv('hlp_benutzername');
	hideDiv('hlp_pw1');
	hideDiv('hlp_pw2');
	hideDiv('hlp_email');
	hideDiv('hlp_email_check');
	hideDiv('hlp_persdaten');
}
function init_help_register() {
	if (!document.getElementsByTagName) return
	hideDiv('hlp_company');
	hideDiv('hlp_street');
	hideDiv('hlp_plz');
	hideDiv('hlp_city');
	hideDiv('hlp_phone');
	hideDiv('hlp_benutzername');
	hideDiv('hlp_email');
	hideDiv('hlp_email2');
	hideDiv('hlp_persdaten');
}
