var ValueEdit = {
	valueUp: function(input){
		if ( parseInt($(input).value) >= 0 ) {
			$(input).value = parseInt($(input).value)+1;
		} else {
			$(input).value = 0;
		}
	},
	valueDown: function(input){
		if ( parseInt($(input).value) > 0 ) {
			$(input).value = $(input).value-1;
		} else {
			$(input).value = 0;
		}
	}
}

var UserData = {
	copyCim: function(){
		$("irszam2").value = $("irszam").value;
		$("varos2").value = $("varos").value;
		$("cim2").value = $("cim").value;
	},
	disableInputs: function(el){
		if ( $("szemelyes").checked ){
			$("irszam").setAttribute('disabled', 'disabled'); 
			$("varos").setAttribute('disabled', 'disabled'); 
			$("cim").setAttribute('disabled', 'disabled'); 
			$("irszam2").setAttribute('disabled', 'disabled'); 
			$("varos2").setAttribute('disabled', 'disabled'); 
			$("cim2").setAttribute('disabled', 'disabled'); 
		} else {
			$("irszam").removeAttribute('disabled'); 
			$("varos").removeAttribute('disabled'); 
			$("cim").removeAttribute('disabled'); 
			$("irszam2").removeAttribute('disabled'); 
			$("varos2").removeAttribute('disabled'); 
			$("cim2").removeAttribute('disabled'); 
		}
	},
	checkSzemelyes: function(){
		if ( $("szemelyes").checked ){
			$("irszam").removeAttribute('disabled'); 
			$("varos").removeAttribute('disabled'); 
			$("cim").removeAttribute('disabled'); 
			$("irszam2").removeAttribute('disabled'); 
			$("varos2").removeAttribute('disabled'); 
			$("cim2").removeAttribute('disabled');
			$("irszam").value = " ";
			$("varos").value = " ";
			$("cim").value = " ";
			$("irszam2").value = " ";
			$("varos2").value = " ";
			$("cim2").value = " ";
		}
	}
}

function __void(){

}
