 var occ = {
	MesseHaandbog: {
		addQuantity: function(id,kategori){
		  var antal = document.getElementById("antal"+id).value;
		  window.location = "?category="+kategori+"&addProduct="+id+"&antal="+antal;
	    	},

		thousandSeperator: function(price){
		  price += '';

		  if (price.length == 4){
		      price = price.substring(0,1) + '.' + price.substring(1,4);
		  }
		  else if(price.length == 5){
		      price= price.substring(0,2) + '.' + price.substring(2,5);
		  }
		  else if(price.length == 6){
		      price= price.substring(0,3) + '.' + price.substring(3,6);
		  }
		  document.write(price);
		}
	}
  }