//rechtliche hinweise oeffnen
function openAGB(url) {
  var anbieterFenster = window.open(url,"AGB","width=1000,height=640,location=no,menubar=no,resizable=no,scrollbars=yes");
  anbieterFenster.focus();
}
function openTarife() {
  var tarifFenster = window.open("tarife.htm","Tarif","width=840,height=600,location=no,menubar=no,resizable=no,scrollbars=yes");
  tarifFenster.focus();
}
function init() {
  $('#tarifAddOn').show();
  $('#dataSelector').load('load_selector.php',{},function(){
    $('#lastchanges').load('load_lastchanges.php');
    $('#selland').change(function(){
      var isSel = $(this).val();
      $('#dataContainer').load('load_data.php',{'land': isSel});
    });
  });
}
function init2() {
  $('#tarifAddOn2').show();
  $('#dataSelector2').load('load_selector2.php',{},function(){
    $('#lastchanges2').load('load_lastchanges2.php');
    $('#selland2').change(function(){
      var isSel = $(this).val();
      $('#dataContainer2').load('load_data2.php',{'land2': isSel});
    });
  });
}
function dataClose() {
  $('#tarifAddOn').hide();
}
function dataClose2() {
  $('#tarifAddOn2').hide();
}
// mail versenden
function check() 
	{
	var lastname = document.formular.lastname.value;	
  var forename = document.formular.forename.value;
  var email = document.formular.email.value;
	document.getElementById('lastname').style.borderColor='#7a7a7a';
	document.getElementById('llastname').style.color='#333333';
	document.getElementById('forename').style.borderColor='#7a7a7a';
	document.getElementById('lforename').style.color='#333333';
	document.getElementById('email').style.borderColor='#7a7a7a';
	document.getElementById('lemail').style.color='#333333';
	document.getElementById('error').style.display='none';
	var reg = new RegExp('^([a-zA-Z0-9\\-\\.\\_]+)(\\@)([a-zA-Z0-9\\-\\.]+)(\\.)([a-zA-Z]{2,4})$');
	
	if(((!lastname)||(lastname.length < 2))||((!forename)||(forename.length < 2))||(!reg.test(email))) {
	
		if((!lastname)||(lastname.length < 2)) {
			document.getElementById('lastname').style.borderColor='#E20074';
			document.getElementById('llastname').style.color='#E20074';
		}
		if((!forename)||(forename.length < 2)) {
			document.getElementById('forename').style.borderColor='#E20074';
			document.getElementById('lforename').style.color='#E20074';
		}
		
		if(!reg.test(email)) {
			document.getElementById('email').style.borderColor='#E20074';
			document.getElementById('lemail').style.color='#E20074';
		}
		document.getElementById('error').style.display='block';
		return false;
		}
	return true;
	}
	
	function abschicken() {
		if (check()) {
			//alert('ok');
			document.formular.submit();
		}
	}
