/*
* Function openPopupImageBig()
*/

function openPopupImageBig( image ){

	openPopupImage( image, 450, 630);

}

function openPopupImageSmall( image ){

	openPopupImage( image, 250, 430);

}

function openPopupImage( image, width, height ) {

	var image_url = "../_popup/popup.php?image=" + image;
	
	window.open( image_url, "ballywulff",'toolbar=no,screenX=10,left=10,screenY=10,top=10,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,menubar=no,width='+width+',height='+height);
 
}

/*
* Hier kann zusŠtzlich ein Name angegeben werden
*/
function openPopupImageInternational( image, width, height, name_fenster_schliessen ) {

	var image_url = "http://www.ballywulff.de/_popup/popup.php?image=" + image + "&name_fenster_schliessen=" + name_fenster_schliessen;
	
	window.open( image_url, "ballywulff",'toolbar=no,screenX=10,left=10,screenY=10,top=10,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,menubar=no,width='+width+',height='+height);
 
}


/* Neues Fenster mit beliebiger Datei šffnen */
function openPopupFile( file, width, height ) {
	
	window.open( file, "ballywulff",'toolbar=no,screenX=10,left=10,screenY=10,top=10,location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,menubar=no,width='+width+',height='+height);
 
}