function changecap() {
  var btn = document.getElementById("DifferingShippingAddress") ;
  if (btn != null)
    if (document.getElementById("DifferingShippingAddress").checked == true) {
	  document.getElementById("adr_ok").value = "Lieferanschrift eingeben" ;
     } else {
 	  document.getElementById("adr_ok").value = "Zur Kasse gehen" ;
     }
}

function showsearchform() {
  var btn = document.getElementById("dynsearchdiv") ;
  if (btn != null)
      document.getElementById("dynsearchdiv").innerHTML = "<strong>Suchen im Shop</strong>" +
														  "<form name=\"Formular\" onsubmit=\"doSearch();return false;\">"+
														  "<input type=\"search\" style=\"width: 110px;\" id=\"suchbegriff\">" +
														 "&nbsp;<a class=\"orderlink\" href=\"#\" onclick=\"javascript:doSearch();return false;\" id=\"startsuche\">Suchen</a></form>"+
		                                                 "<p style=\"line-leight: 0.9em;padding-bottom:0px; margin-bottom:0px;\"><small>Suchen Sie nach Artikelnummer, Suchbegriff oder Beschreibung.</small></p>" ;
														 
}

function doSearch() {
  var sb = document.getElementById("suchbegriff").value ;
  if (sb != "") {
     window.location = 'suche.html?' + sb;
  }
}

function displayProdImage(link, hg, wd) {

  var img = document.getElementById("mainimg") ;
  if (img != null) {
     img.src = link ; 
	 img.height = hg ;
	 img.width = wd ;
	 document.getElementById('mainimg_link').href = link ; 
  
  }
}

