
function popImage(imageURL,imageTitle,imageWidth,imageHeight){
	imagePopup = window.open('','photoGalleryImage','width=' +imageWidth + ',height=' + imageHeight);
	imagePopup.document.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"\n');
	imagePopup.document.write('"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">');
	imagePopup.document.write('\n<html>\n<head>');
	imagePopup.document.write('\n<title>' + imageTitle + '</title>\n</head>');
	imagePopup.document.write('\n<body style="margin:0;">\n');
	imagePopup.document.write('<img src="' + imageURL + '" width="' + imageWidth + '" height="' + imageHeight + '" alt="' + imageTitle + '" />\n</body>\n</html>');
}