function updateFormats(dontshowmessage,fromlandsacpe,step){
	if (step == undefined){
		step = 1;
	}
	var selValue = $('#hs_halbeshop_configurator_form-tx_hshalbeshop_formatselection option:selected').val();
	if (selValue == 'sonderformat'){
		var formatWidth = Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val());
		var formatHeight = Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val());
		if ($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').attr('readonly')){
			if (!dontshowmessage){
				Ajaxbox_FS.showFile('index.php?id=236&type=85', 350, 250);
			}
			$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').removeAttr('readonly');
			$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').removeAttr('readonly');
		}

		if (($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val() > 0)&&($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val()>0)){
			if ($('input[id*="tx_hshalbeshop_model_selection_format-landscape"]:checked').val() != 1){
				if (formatWidth>formatHeight){
					$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val(formatHeight);
					$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val(formatWidth);
				}
			} else {
				if (formatWidth<formatHeight){
					$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val(formatHeight);
					$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val(formatWidth);
				}
			}
			if (Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val())+Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val()) > 5000){
				while (Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val())+Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val()) > 5000){
					if (Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val())>10){
						$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val(Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val())-1);
					}
					if (Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val())>10){
						$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val(Number($('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val())-1);
					}
				}
				Ajaxbox_FS.showFile('index.php?id=238&type=85', 350, 250);
			}
			updatePrice(this,173,'select',step);
		}

	} else if(selValue != '-1') {
		var parts = selValue.split('-');
		$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-def_format_uid').val(parts[0]);
		$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').attr('readonly','readonly');
		$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').attr('readonly','readonly');
		if ($('input[id*="tx_hshalbeshop_model_selection_format-landscape"]:checked').val() != 1){
			$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val(parts[1]);
			$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val(parts[2]);
		} else {
			$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-width').val(parts[2]);
			$('#hs_halbeshop_configurator_form-tx_hshalbeshop_model_selection_format-height').val(parts[1]);
		}
		updatePrice(this,173,'select',step);

	}
}
$(document).ready(function() {
	updateFormats(true);
});
