/*$(document).ready(function(){
	$('#anmerkung').hide();
	$("a#shownote1").bind("click",
		function(){ 
			$('#anmerkung').toggle();
		}
	);
});
*/

/*
// wait for the DOM to be loaded 
$(document).ready(function() { 
	// bind 'myForm' and provide a simple callback function 
	$('#anmerkung').ajaxForm(function() { 
		$('#anmerkung').empty();
		$('#anmerkung').append('<b>Vielen Dank</b><br />Wir werden Ihre Angelegenheit schnellstmöglich bearbeiten.');
	});
	$('#anmerkung').bind('submit', 'return false');
	$('input').bind('click', function() {
		//checkAnmForm();
	});
});

*/

$(document).ready(function() {

	//$('select[name="tage"]').bind('change', function() {
	$('select.tag').bind('change', function() {
		var filiale = $('input[name="filiale"]').val();
		var tag = $(this).children(':selected').attr('class');
		var change = $(this).next();
		var daten = $.get('/uploads/scripts/auftragsverfolgung/ajax/zeiten.php?filiale='+filiale+'&tag='+tag, function(data) {
			change.html(data);
		});
	});

});


function checkAnmForm() {
	alert($('input').text());
}


function neuesFenster(url, breite, hoehe) {
	window.open(
		url, 
		"newWindow",
		"width="+breite+",height="+hoehe+",resizable=1,scrollbars=1, menubar=0,toolbar=0,location=0,status=0" 
	);
}


function checkForm() {
	if(document.getElementById('anmtext').value.length < 3) {
		alert('Bitte geben Sie eine Nachricht ein.');
		//document.getElementById('anmtext').style.color = 'red';
		return false;
	} else if(document.getElementById('anmemail').value.length < 9) {
		alert('Bitte geben Sie eine E-Mail-Adresse ein.');
		//document.getElementById('anmemail').style.color = 'red';
		return false;
	} else {
		return true;
	}
}
