var Order = {
	
	checkOrder: function() {
		if(document.getElementById('agbcheck').checked == false){
			alert("Bitte bestägen Sie Ihre Zustimmung zu unseren AGBs.");
			document.getElementById('agbcheck').focus();
			return;
		}
    if($('#shipping_adress_chk:checked').length == 1) {
      $('input[name="shipping_company"]').css("border", "1px solid black");
      $('input[name="shipping_name"]').css("border", "1px solid black");
      $('input[name="shipping_street"]').css("border", "1px solid black");
      $('input[name="shipping_zip"]').css("border", "1px solid black");
      $('input[name="shipping_city"]').css("border", "1px solid black");
      $('input[name="shipping_country"]').css("border", "1px solid black");
      if($('input[name="shipping_company"]').val() == "" && $('input[name="shipping_name"]').val() == "") {
        alert("Bitte füllen Sie Firma oder Name aus.");
        $('input[name="shipping_company"]').css("border", "1px solid red");
        $('input[name="shipping_name"]').css("border", "1px solid red");
        return;
      }
      if($('input[name="shipping_street"]').val() == "") {
        alert("Bitte füllen Sie die Straße aus.");
        $('input[name="shipping_street"]').css("border", "1px solid red");
        return;
      }
      if($('input[name="shipping_zip"]').val() == "") {
        alert("Bitte füllen Sie die PLZ aus.");
        $('input[name="shipping_zip"]').css("border", "1px solid red");
        return;
      }
      if($('input[name="shipping_city"]').val() == "") {
        alert("Bitte füllen Sie den Ort aus.");
        $('input[name="shipping_city"]').css("border", "1px solid red");
        return;
      }
      if($('input[name="shipping_country"]').val() == "") {
        alert("Bitte füllen Sie das Land aus.");
        $('input[name="shipping_country"]').css("border", "1px solid red");
        return;
      }    
    }    
    
		document.uebersicht.submit();
	},
	
	setShippingAddress: function(){
		if(document.getElementById("shipping_adress_chk").checked)
			document.getElementById("shipping_form").style.display = 'block';
		else
			document.getElementById("shipping_form").style.display = 'none';
	}
}
		
