
function PreLoadImagesFromContents() {
   if (document.images) {
      bulletLightBlue = new Image();      
      bulletLightBlue.src = "../grafik/bulletLightblue.gif";
      bulletGold = new Image();
      bulletGold.src = "../grafik/bulletGold.gif";
      bulletBlue = new Image();
      bulletBlue.src = "../grafik/bulletBlue.gif"; 
   }         
}

function PreLoadImagesFromContentsRoot() {
   if (document.images) {
      bulletLightBlue = new Image();      
      bulletLightBlue.src = "grafik/bulletLightblue.gif";
      bulletGold = new Image();
      bulletGold.src = "grafik/bulletGold.gif";
      bulletBlue = new Image();
      bulletBlue.src = "grafik/bulletBlue.gif"; 
   }         
}
 
/*********************************************************/	 
function changeIcon (a,Bild){   
      
     //Image auswechseln 
      var a,Bild;	  
      window.document.images[a].src=Bild.src; 
}
/**********************************************
* Pop Up 
*/
function openPopup(img, width, height) {
   if (img && width && height) {
   //fenster ist höchstens 640x600 groß
      width = Math.min(width, 800);
      height = Math.min(height, 800);
      var popUp =
window.open(img,"popUp","toolbar=no,location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,width=" + width + ",height=" + height);
   }
   popUp.document.bgColor="#FFFCE1";   
   return;
}
/**********************************************
* Pop Up 
*/
function openPopup2(img) {
   if (img) {
   //fenster ist höchstens 640x480 groß       
      var popUp =
      window.open(img,"popUp","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no");
   }
   popUp.document.bgColor="#FFFCE1";   
   return;
}






