function openPhoto(photoURL, photoName) { 
	win = window.open(photoURL, photoName, 'toolbar=0,location=0,directories=0,status=0,menuBar=0,scrollBars=0,resizable=1');
//	win.innerWidth=win.document.images[0].width;
//	win.document.height=win.document.images[0].height;
	win.document.images[0].src = photoURL;
	win.document.images[0].alt = photoName;
	win.resizeTo(win.document.images[0].width, win.document.images[0].height);
	win.focus();
	return win;
}

function openWin( windowURL, windowName, windowFeatures ) { 
	return window.open(windowURL, windowName, windowFeatures) ; 
} 
