var Fact=1.09; //Schwer
var S_Fact=1.12; //Schwab
var Fact_Dollar=1.40/1.32; //urspr+nglich Kalkulation war mit 1,32
//var Ergebnis;
function Weight (Weight) {
var W_Fact=1.1; 
var W_Add=3; 
  var Ergebnis=Math.round(Weight*W_Fact*Fact_Dollar)+ W_Add;  
  return Ergebnis;
}
function Preis (Preis) {
  var Ergebnis=Math.round(Preis*Fact*Fact_Dollar);  //Math.ceil = nächtshöhere, Math.floor = nächtskleinere Zahl Math.round rundet kaufmännisch
  return Ergebnis;

}
function S_Preis (Preis) {
  var Ergebnis=Math.round(Preis*S_Fact*Fact_Dollar);  //Math.ceil = nächtshöhere, Math.floor = nächtskleinere Zahl Math.round rundet kaufmännisch
  return Ergebnis;

}
function PreisWrite (Preis) {
  Preis=Math.round(Preis*Fact*Fact_Dollar);  //Math.ceil = nächtshöhere, Math.floor = nächtskleinere Zahl Math.round rundet kaufmännisch
  document.write("<b>" + Preis + "</b>");
}
function S_PreisWrite (Preis) {
  Preis=Math.round(Preis*S_Fact*Fact_Dollar);  //Math.ceil = nächtshöhere, Math.floor = nächtskleinere Zahl Math.round rundet kaufmännisch
  document.write("<b>" + Preis + "</b>");
}