
/*
* Function openPopupImageBig()
*/

function openPopupImageBig( image ){

	openPopupImage( image, 450, 630);

}

function openPopupImageSmall( image ){

	openPopupImage( image, 250, 430);

}

function openPopupImage( image, width, height, bu ) {

	var image_url = "../_popup/popup.php?image=" + image + "&bu=" + escape(bu);
	
	window.open( image_url, "popup",'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, "popup",'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);
 
}
