  function updatePrice(div, price, de)
  {
    var hdiv;

    if (document.getElementById)
        hdiv = document.getElementById(div);
    else if (document.all)
        hdiv = document.all[div];

    if (hdiv != null && hdiv != "undefined")
    {
    	if (de == 1)
    		hdiv.innerHTML = '<strong>Preis: ' + price + ' &euro;</strong>';
    	else
    		hdiv.innerHTML = '<strong>Price: ' + price + ' &euro;</strong>';
    }
  }
  
  function updatePriceRabatt(div, price, priceRabatt, de)
  {
    var hdiv;

    if (document.getElementById)
        hdiv = document.getElementById(div);
    else if (document.all)
        hdiv = document.all[div];

    if (hdiv != null && hdiv != "undefined")
    {
    	if (de == 1)
    	{
    		hdiv.innerHTML = '<strike><strong>Preis: ' + price + ' &euro;</strong></strike><br>' + 
    		                 '<font color="red"><strong>Preis: ' + priceRabatt + ' &euro;</strong></font>';
    	}
    	else
    	{
    		hdiv.innerHTML = '<strike><strong>Price: ' + price + ' &euro;</strong></strike><br>' + 
    		                 '<font color="red"><strong>Price: ' + priceRabatt + ' &euro;</strong></font>';
    	}
    }
  }  