showCreateNewBranch = function() {	
	if ($('#sel_category').val() == $('#newBranchId').val()){
		$('#createNewBranch').val("Branchennamen eingeben");
		$('#createNewBranch').show();
		
	} else{
		$('#createNewBranch').hide();
		$('#createNewBranch').val("");
	}		
}

setEmpty = function() {
	$('#createNewBranch').val("");	
}

//get product details and show it in container
getProductDetailsRegister = function(id){	
	DWREngine._execute(_ajaxConfig._cfscriptLocation, null, 'getProductDetails', id, function(data) {	
			$("#productDetailsContainer").html(data);
			if ($("#productDetailsContainer").css('display') == 'none') {
				$("#productDetailsContainer").slideToggle();
			}				
		}
	);
}

$(document).ready(function() {$('#createNewBranch').hide();});


