function pop(file)
{
helpwindow = window.open(file,"pophelp","width=750, height=500");
helpwindow.focus();
return false;
}




/* ************************************************************** *
 * Funktion zum Ein- bzw. Ausblenden eines Elements			   *
 * Parameter:													 *
 * strDivID - ID des Elementes, das ein-/ausgeblendet werden soll *
 * objImg   - Objekt des Bildes, das gewechselt werden soll	   *
 * ************************************************************** */
function toggleDiv(strDivID, objImg){
  var myObj = document.getElementById(strDivID);
  // Falls der Container eingeblendet werden soll
  if(myObj.style.display == "none"){
	// Container einblenden
	myObj.style.display = "block";
	// Bild wechseln
	objImg.src = "bilder/up.gif";
  }else{
	// Container ausblenden
	myObj.style.display = "none";
	// Bild wechseln
	objImg.src = "bilder/down.gif";
  }
}




   function PopupPic(sPicURL) {
     window.open( "popup.html?"+sPicURL, "name","resizable=1");
   }
   
   
    <!--
var win=null;
function NewWindow(mypage,myname,w,h,pos,infocus){
if(pos=="random"){myleft=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;mytop=(screen.height)?Math.floor(Math.random()*((screen.height-h)-75)):100;}
if(pos=="center"){myleft=(screen.width)?(screen.width-w)/2:100;mytop=(screen.height)?(screen.height-h)/2:100;}
else if((pos!='center' && pos!="random") || pos==null){myleft=0;mytop=20}
settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";win=window.open(mypage,myname,settings);
win.focus();}
// -->
   
   
   
   
   
   
   
   
