// JavaScript Document

<!-- Picture Pop Up Script -->		

function thumb (url,title,width,height) { 
	var width2 = width + 50;
	var height2 = height + 70;
	var cUrl = "/popup/picture.php4?url=" + url + "&title=" + title;
	var cWindow = window.open(cUrl,"Bild","width=" +width2 +",height="+height2+",resizable=no,scrollbars=no"); 
	if (!cWindow.opener) cWindow.opener = self; if (cWindow.focus != null) cWindow.focus(); 
} 	
