function MM_openBrWindow(theURL,winName,features) { //v2.0
	
window.open(theURL,winName,features);
}



function popupphoto(theURL,caption,width,height) {
	
document.photo.caption.value=caption;
	
document.photo.photofile.value=theURL;
	
feature='resizable=yes,scrollbars=yes,width=345,height=345';
	
MM_openBrWindow('popup.html','',feature);
}


