/**
 * @author nexum AG
 */

/*function clearInput (id) {
	document.getElementById(id).value = "";
	return false;
}

function fillDefault (id) {
	if (document.getElementById(id).value == "")
		document.getElementById(id).value = "_";
	return false;
}

function nextInput(id){
	//alert(id);
	if (id != 0) {
		var preId = id - 1;
		if (document.getElementById("cartBottomVoucherNr_" + preId).value != "" && document.getElementById("cartBottomVoucherNr_" + preId).value != "-") 
			document.getElementById("cartBottomVoucherNr_" + id).focus;
	}
	return false;
}

function controlInput(id) {
	if (document.getElementById(id).value == "") {
		document.getElementById(id).value = "_";
	}
	return false;
}*/

