function openImage(imageName, theTitle, theWidth, theHeight) {
	theWindow = window.open("images/" + imageName + ".jpg", theTitle, 'toolbar=no, resizable=yes, menubar=no, width=' + theWidth + ', height=' + theHeight + ', screenX=210, screenY=180, left=210, top=180');
	theWindow.focus();
}
