/* Kingsleah Javascripts */

function popImage(theSource, theWidth, theHeight, thePhotographer, theText) {
	var theWindowHeight = theHeight + 50;
	var url = "pictureViewer.php?src=" + theSource + "&width=" + theWidth +"&height=" + theHeight +"&photographer=" + thePhotographer+ "&text=" + theText;
	window.open(url, 'popImage', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=' + theWidth + ',height=' + theWindowHeight);
}