
// -----------------------------------------------------------------
// IMAGE BIG (content right) -----------------------------------
function popup (bild_url, absPath) {
	var w = 800;
	var h = 600;
	var x = Math.round(screen.width/2 - w/2);
	var y = Math.round(screen.height/2 - h/2);
	
	window.open(absPath+'includes/popup_img.php?img=../images/'+bild_url+'?cache='+Math.random(),'popup','menubar=no,toolbar=no,location=no,status=no, scrollbars=no,resizable=no,width='+w+',height='+h+',top='+y+',left='+x+'');
}
