function zoomBild(url,breite,hoehe,altText){
    // Einzelbild
    wndWidth = 650;



    wndHeight = 650+145;//höhe des kopfs!



    if(breite < 480){



        wndWidth= 480;   



    }



    if(hoehe < 466){



        wndHeight = hoehe+145;  



    }



    myW = window.open("http://golfarena.badenonline.at/includes/popup-img.php?&src="+url+"&w="+breite+"&h="+hoehe+"&altText="+altText, "bildW", "width="+wndWidth+",height="+wndHeight+",left=60,top=60,toolbar=yes,resizable=yes");




    myW.focus();



    return false;



}

function zoomBildGal(pfad,url,breite,hoehe){

	//Bildergalerie:

	wndWidth = 700;

	wndHeight = 566;

//	if(breite < 700){
//
//		wndWidth= breite;	
//
//	}
//
//	if(hoehe < 566){
//
//		wndHeight = hoehe;	
//
//	}

	myW = window.open("http://golfarena.badenonline.at/includes/popup-imggal.php?pfad="+pfad+"&src="+url+"&w="+breite+"&h="+hoehe, "bildW", "width="+wndWidth+",height="+wndHeight+",left=60,top=60,toolbar=yes,resizable=yes");

	myW.focus();

	return false;

}