// Java Script fuer Hinweis verstecken nach Download aller Bilder
// --------------------------------------------------------------------------
<!--
function BildCheck(bildzahl) {
//alert("BildCheck: "+bildzahl);
 var Status = "";
 for(i = 0; i < document.images.length; ++i)
 {
  if(document.images[i].complete == true)
   Status = (i+1);
 }
//alert(Status);
if (Status==bildzahl) {
	document.getElementById("hinweis").innerHTML = "";	//Hinweis verstecken
}
}
//-->
