// ##################################################################	
// # (C) 2007 Lebe Gesund!-Versand GmbH, www.LebeGesund.de
// # ================================================================	
// # Projekt: Internet-Shop               						
// # ----------------------------------------------------------------
// # Beschreibung:								
// #   DHTML-Funktionen für Storefront
// # 										
// # History:									
// #   05.10.2007 - Neuanlage (sh)
// ################################################################## 

// ----------------------------------------------------------------
function toggle_article_details(article_id, display_mode) {
// ----------------------------------------------------------------
// Highlighted eine Artikel-Detail-Zeile in der Artikel-Tabelle
// eines Produktes bzw. versetzt sie in den Normalzustand zurück.
//
// Aufruf-Parameter:
//   1: ID der Artikel-Detail-Tabellenzellen
//   2: Anzeigemodus
// ----------------------------------------------------------------	

  if (display_mode == 1) {
    document.getElementById("article_details_" + article_id + "_a").className += ' article_details_highlighted';
	document.getElementById("article_details_" + article_id + "_b").className += ' article_details_highlighted';
	document.getElementById("article_details_" + article_id + "_c").className += ' article_details_highlighted';
	document.getElementById("article_details_" + article_id + "_d").className += ' article_details_highlighted';
  } else {
	document.getElementById("article_details_" + article_id + "_a").className = 'article_amount';
	document.getElementById("article_details_" + article_id + "_b").className = 'button_shopping';
	document.getElementById("article_details_" + article_id + "_c").className = 'article_text';
	document.getElementById("article_details_" + article_id + "_d").className = 'article_price';	
  }

}

// ----------------------------------------------------------------
function empty_article_amounts () {
// ----------------------------------------------------------------
// Wird aufgerufen, sobald eine Angebots-Seite neu geladen wird.
// Leert alle Mengen-Felder.
// ----------------------------------------------------------------

  for(i=0; i <= 100; i++) {
    var quantity_field_id = "QUANTITY" + i;
    if (document.getElementById(quantity_field_id)) {
	  document.getElementById(quantity_field_id).value = '';
    }
  }
}
  
